aboutsummaryrefslogtreecommitdiffstats
path: root/t/__init__.py
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-10-18 02:38:41 -0400
committerJesse Luehrs <doy@tozt.net>2014-10-18 02:38:41 -0400
commit91295c22eff10201049e4fb926680b3db9e11dde (patch)
tree7eadb4be2dd30ba35e58bda6614c03880a7cc6ed /t/__init__.py
parent5ab52ce39d2f89d6aa7bdec1248c4ceafd9c7893 (diff)
downloadlibvt100-python-91295c22eff10201049e4fb926680b3db9e11dde.tar.gz
libvt100-python-91295c22eff10201049e4fb926680b3db9e11dde.zip
start adding tests
Diffstat (limited to 't/__init__.py')
-rw-r--r--t/__init__.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/t/__init__.py b/t/__init__.py
new file mode 100644
index 0000000..560d9da
--- /dev/null
+++ b/t/__init__.py
@@ -0,0 +1,7 @@
+import unittest
+
+import vt100
+
+class VT100Test(unittest.TestCase):
+ def setUp(self):
+ self.vt = vt100.vt100(24, 80)