diff options
author | Hamilton Kibbe <hamilton.kibbe@gmail.com> | 2014-09-30 23:42:02 -0400 |
---|---|---|
committer | Hamilton Kibbe <hamilton.kibbe@gmail.com> | 2014-09-30 23:42:02 -0400 |
commit | f8449ad2b60b8a715d0867325e257a8297193b49 (patch) | |
tree | c7cf4bed6de5c6200f9aaf937167ee71d1c9ce58 /gerber/tests/tests.py | |
parent | 88fb7f23110d2270c5c7f8a7b90cae32295da78e (diff) | |
download | gerbonara-f8449ad2b60b8a715d0867325e257a8297193b49.tar.gz gerbonara-f8449ad2b60b8a715d0867325e257a8297193b49.tar.bz2 gerbonara-f8449ad2b60b8a715d0867325e257a8297193b49.zip |
tests update
Diffstat (limited to 'gerber/tests/tests.py')
-rw-r--r-- | gerber/tests/tests.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gerber/tests/tests.py b/gerber/tests/tests.py new file mode 100644 index 0000000..29b7899 --- /dev/null +++ b/gerber/tests/tests.py @@ -0,0 +1,18 @@ +#! /usr/bin/env python +# -*- coding: utf-8 -*- + +# Author: Hamilton Kibbe <ham@hamiltonkib.be> + +from nose.tools import assert_in +from nose.tools import assert_not_in +from nose.tools import assert_equal +from nose.tools import assert_not_equal +from nose.tools import assert_true +from nose.tools import assert_false +from nose.tools import assert_raises +from nose.tools import raises +from nose import with_setup + +__all__ = ['assert_in', 'assert_not_in', 'assert_equal', 'assert_not_equal', + 'assert_true', 'assert_false', 'assert_raises', 'raises', + 'with_setup' ] |