changeset 8:967480d228b6

Some not-really-tests.
author Jeremy Thurgood <firxen@gmail.com>
date Sun, 06 May 2012 12:57:47 +0200
parents eadc5c19d665
children b132a56ae4d4
files gamelib/tests/__init__.py gamelib/tests/test_lab.py
diffstat 1 files changed, 13 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gamelib/tests/test_lab.py	Sun May 06 12:57:47 2012 +0200
@@ -0,0 +1,13 @@
+from unittest import TestCase
+
+from gamelib.lab import Lab
+
+
+class TestLab(TestCase):
+    def test_find_new_products(self):
+        lab = Lab()
+        print lab.find_new_products(None)
+
+    def test_find_new_research(self):
+        lab = Lab()
+        print lab.find_new_research(None)