This commit is contained in:
2025-09-01 07:56:13 +02:00
parent 41b613f451
commit 68144c3918
10 changed files with 257 additions and 93 deletions

View File

@@ -0,0 +1,28 @@
SELECT plan(4);
SELECT is(
(SELECT nb_total_familles FROM nb_total_familles),
137::bigint,
'La table famille contient 137 enregistrements'
);
SELECT is(
(SELECT nb_total_articles FROM nb_total_articles),
1099::bigint,
'La table article contient 1099 enregistrements'
);
SELECT is(
(SELECT nb_total_adherents FROM nb_total_adherents),
2439::bigint,
'La table adherent contient 2439 enregistrements'
);
SELECT is(
(SELECT nb_total_tickets FROM nb_total_tickets),
101616::bigint,
'La table ticket contient 101 616 enregistrements'
);
-- Termine le test
SELECT * FROM finish();