OILS / opy / compiler2 / pyassem_test.py View on Github | oilshell.org

28 lines, 11 significant
1#!/usr/bin/env python2
2from __future__ import print_function
3"""
4pyassem_test.py: Tests for pyassem.py
5"""
6
7import unittest
8
9# TODO: This import breaks unit test discovery.
10#from compiler2 import pyassem # module under test
11
12
13class PyAssemTest(unittest.TestCase):
14
15 def setUp(self):
16 pass
17
18 def tearDown(self):
19 pass
20
21 def testFoo(self):
22 #g = pyassem.FlowGraph()
23 #print(g)
24 pass
25
26
27if __name__ == '__main__':
28 unittest.main()