mirror of https://github.com/KLayout/klayout.git
Added a smoke test
This commit is contained in:
parent
97b6d82358
commit
d1e49dfd90
|
|
@ -53,6 +53,13 @@ class BasicTest(unittest.TestCase):
|
|||
p.name = "u"
|
||||
self.assertEqual(p.name, "u")
|
||||
|
||||
def test_3(self):
|
||||
|
||||
# smoke test (issue #2154)
|
||||
x = lay.Cursor.Arrow
|
||||
x = lay.ButtonState.ShiftKey
|
||||
x = lay.KeyCode.Escape
|
||||
|
||||
# run unit tests
|
||||
if __name__ == '__main__':
|
||||
suite = unittest.TestSuite()
|
||||
|
|
|
|||
Loading…
Reference in New Issue