From d53b7c35a414c1953b65e31310d0495f36d57340 Mon Sep 17 00:00:00 2001 From: Joel Vasallo Date: Oct 26 2016 18:34:39 +0000 Subject: Added base test case for CG_Importer --- diff --git a/tests/test_hub/test_cg_importer.py b/tests/test_hub/test_cg_importer.py new file mode 100644 index 0000000..004d2b7 --- /dev/null +++ b/tests/test_hub/test_cg_importer.py @@ -0,0 +1,11 @@ +import unittest +import mock + +import kojihub + + +class TestCGImporter(unittest.TestCase): + def test_basic_instantiation(self): + # TODO -- this doesn't make sense. A query with no arguments should + # probably raise an exception saying "this doesn't make sense." + kojihub.CG_Importer() # No exception!