renommer postgresql entry point

This commit is contained in:
2025-10-13 21:15:54 +02:00
parent c0b61dfae6
commit 7a881ab744
11 changed files with 0 additions and 0 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();