diff options
Diffstat (limited to 'git/test/test_import.py')
-rw-r--r-- | git/test/test_import.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/git/test/test_import.py b/git/test/test_import.py new file mode 100644 index 00000000..d97cee55 --- /dev/null +++ b/git/test/test_import.py @@ -0,0 +1,14 @@ +# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors +# +# This module is part of GitDB and is released under +# the New BSD License: http://www.opensource.org/licenses/bsd-license.php +"""This module's whole purpose is to verify the __all__ descriptions in the respective +module, by importing using from x import *""" + +# perform the actual imports + +from nose import SkipTest + +class TestDummy(object): + def test_base(self): + raise SkipTest("todo") |