Beispiel #1
0
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

"""
test_xsubjects.py

Last updated:  2019-10-05
"""

from wz_core.reporting import Report
from test_core import testinit, runTests


if __name__ == '__main__':
    testinit ()

    from wz_grades import gradeprocessing
    runTests (gradeprocessing)
Beispiel #2
0
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
test_spimport.py

Last updated:  2019-12-19
"""

from wz_core.reporting import Report
from test_core import testinit, runTests

if __name__ == '__main__':
    testinit()

    from wz_text import summary
    runTests(summary)
Beispiel #3
0
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

"""
test_subjects.py

Last updated:  2019-09-28
"""

from wz_core.reporting import Report
from test_core import testinit, runTests


if __name__ == '__main__':
    testinit ()

    from wz_core import courses
    runTests (courses)
Beispiel #4
0
Run some tests on the modules in the wz_attendance package.


=+LICENCE=============================
Copyright 2019 Michael Towers

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.

=-LICENCE========================================
"""

from wz_core.reporting import Report
from test_core import testinit, runTests

if __name__ == '__main__':
    testinit()

    from wz_attendance import attendance
    runTests(attendance)
Beispiel #5
0
Run some tests on the modules in the wz_text package.


=+LICENCE=============================
Copyright 2019 Michael Towers

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.

=-LICENCE========================================
"""

from wz_core.reporting import Report
from test_core import testinit, runTests


if __name__ == '__main__':
    testinit ()

    from wz_text import coversheet
    runTests (coversheet)
Beispiel #6
0
Run tests on the module handling subject choice tables in the wz_core package.


=+LICENCE=============================
Copyright 2020 Michael Towers

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.

=-LICENCE========================================
"""

from wz_core.reporting import Report
from test_core import testinit, runTests

if __name__ == '__main__':
    testinit()

    from wz_core import subjectchoices
    runTests(subjectchoices)
Beispiel #7
0
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
test_compat.py

Last updated:  2019-09-27
"""

from wz_core.reporting import Report
from test_core import testinit, runTests

if __name__ == '__main__':
    testinit()

    #    from wz_compat import migrate
    #    runTests (migrate)

    #    from wz_compat import import_pupils
    #    runTests (import_pupils)

    from wz_compat import config
    runTests(config)

    from wz_compat import grades
    runTests(grades)
Beispiel #8
0
Run some tests on the abitur module in the wz_grades package.


=+LICENCE=============================
Copyright 2019 Michael Towers

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.

=-LICENCE========================================
"""

from wz_core.reporting import Report
from test_core import testinit, runTests

if __name__ == '__main__':
    testinit()

    from wz_grades import makeabireports
    runTests(makeabireports)
Beispiel #9
0
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.

=-LICENCE========================================
"""

from wz_core.reporting import Report
from test_core import testinit, runTests

if __name__ == '__main__':
    testinit()

    #    from wz_compat import grade_classes
    #    runTests(grade_classes)

    #    from wz_grades import gradedata
    #    runTests (gradedata)

    #    from wz_grades import makereports
    #    runTests (makereports)

    from wz_grades import gradetable
    runTests(gradetable)