blob: 8b7a0c922203406f6e315231419560f59cacf722 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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()
|