summaryrefslogtreecommitdiff
path: root/tests/module_loader_test.py
diff options
context:
space:
mode:
authorJosh Blum2013-07-08 00:14:57 -0700
committerJosh Blum2013-07-08 00:14:57 -0700
commit4e28cd4159fad7c01a8945957b98fa94d7f66c62 (patch)
treef6ae3606449b44e6518a8f858886cf62cbeaf539 /tests/module_loader_test.py
parentfbec0c405a1fec4e8ee82d065fdc657cdd333f52 (diff)
parent07070a8000400ced8dc8ff612c82c418df73f7ef (diff)
downloadsandhi-4e28cd4159fad7c01a8945957b98fa94d7f66c62.tar.gz
sandhi-4e28cd4159fad7c01a8945957b98fa94d7f66c62.tar.bz2
sandhi-4e28cd4159fad7c01a8945957b98fa94d7f66c62.zip
Merge branch 'function_registry'
Diffstat (limited to 'tests/module_loader_test.py')
-rw-r--r--tests/module_loader_test.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/module_loader_test.py b/tests/module_loader_test.py
new file mode 100644
index 0000000..8b7a0c9
--- /dev/null
+++ b/tests/module_loader_test.py
@@ -0,0 +1,13 @@
+# Copyright (C) by Josh Blum. See LICENSE.txt for licensing information.
+
+import unittest
+import gras
+
+class ModuleLoaderTest(unittest.TestCase):
+
+ def test_load_module(self):
+ my_block = gras.Factory.make("/tests/my_block")
+ self.assertEqual(my_block.get_num(), 42)
+
+if __name__ == '__main__':
+ unittest.main()