- Added codeception test cases

- Moved old libraries to CI
This commit is contained in:
paolo
2016-05-25 18:36:18 +02:00
parent 70fba4d267
commit 00211ee647
17 changed files with 147 additions and 13 deletions
+15
View File
@@ -1,6 +1,12 @@
-- UPDATE tbl_studiengang
UPDATE public.tbl_studiengang SET onlinebewerbung = TRUE;
-- EMPTY public.tbl_preinteressent
DELETE FROM public.tbl_preinteressent;
-- EMPTY public.tbl_prestudentstatus
DELETE FROM public.tbl_prestudentstatus;
-- EMPTY public.tbl_prestudent
DELETE FROM public.tbl_prestudent;
-- EMPTY lehre.tbl_studienplan
DELETE FROM lehre.tbl_studienplan_semester;
-- EMPTY lehre.tbl_studienplan
@@ -179,6 +185,15 @@ INSERT INTO lehre.tbl_studienplan VALUES (2, 1, 'VZ', 'A', '01234', 6, 'English'
INSERT INTO lehre.tbl_studienplan VALUES (3, 1, 'VZ', 'A', '01234', 6, 'English', 't', 15, 't', NOW(), 'codeception', NOW(), NULL, NULL, NULL, NULL, NULL);
INSERT INTO lehre.tbl_studienplan VALUES (4, 1, 'VZ', 'A', '01234', 6, 'English', 't', 15, 't', NOW(), 'codeception', NOW(), NULL, NULL, NULL, NULL, NULL);
-- INSERT Prestudent (public.tbl_prestudent)
INSERT INTO public.tbl_prestudent VALUES (1, 'TGM', 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'f', NULL, 't', NULL, NULL, NULL, NULL, NULL, NULL, 'f', NULL, NULL, NULL, 0.0, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-- INSERT Prestudent status (public.tbl_prestudentstatus)
INSERT INTO public.tbl_prestudentstatus VALUES (1, 'Interessent', 'WS2016', 1, NOW(), NOW(), 'codeception', NOW(), 'codeception', NULL, 'VZ', 1, NULL, 'admin', NULL, NULL, NULL, NULL);
-- INSERT Preinteressent (public.tbl_preinteressent)
INSERT INTO public.tbl_preinteressent VALUES (1, 1, 'WS2016', 'TGM', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'bewerbungonline', NULL);
-- INSERT INTO lehre.tbl_studienplan_semester (studienplan_semester_id, studienplan_id, studiensemester_kurzbz, semester)
INSERT INTO lehre.tbl_studienplan_semester VALUES (1, 1, 'WS2016', 1);