-
Notifications
You must be signed in to change notification settings - Fork 3
/
test.py
56 lines (42 loc) · 855 Bytes
/
test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Unittests für PyZufall.
Ausführen mit::
make test
oder mit coverage::
nosetests -v --with-coverage --cover-package=pyzufall --with-doctest
"""
import re
from functools import wraps
from pyzufall.helfer import re_satz, re_frage
from pyzufall.satz import satz, satz_frage
from pyzufall.generator import sprichwort
def multi(fn):
"""
Wrapper, um eine Funktion 1000 mal auszuführen.
"""
@wraps(fn)
def wrapper():
for n in range(0,1000): # Anzahl
fn()
return wrapper
@multi
def test_satz():
s = satz()
print(s)
assert re.match(re_satz, s)
@multi
def test_satz_frage():
s = satz_frage()
assert re.match(re_frage, s)
@multi
def test_sprichwort():
s = sprichwort()
print(s)
assert re.match(re_satz, s)
def main():
import nose
nose.main()
if __name__ == "__main__":
main()