# HG changeset patch # User Reimar Bauer # Date 1390158847 -3600 # Node ID e45653152a0357d338354f13f08a3db8e46c74c7 # Parent 19cb76f40d74742d8e2b13e8bc9d7fcaee811ca9 renamed tests directory diff -r 19cb76f40d74 -r e45653152a03 _tests/test_sayings.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/_tests/test_sayings.py Sun Jan 19 20:14:07 2014 +0100 @@ -0,0 +1,6 @@ +from sayings import get_saying + +def test_saying(): + saying, author = get_saying() + assert saying is not None + assert author is not None diff -r 19cb76f40d74 -r e45653152a03 tests/test_sayings.py --- a/tests/test_sayings.py Sun Jan 19 20:11:15 2014 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,6 +0,0 @@ -from sayings import get_saying - -def test_saying(): - saying, author = get_saying() - assert saying is not None - assert author is not None