comparison gamelib/tests/test_lab.py @ 8:967480d228b6

Some not-really-tests.
author Jeremy Thurgood <firxen@gmail.com>
date Sun, 06 May 2012 12:57:47 +0200
parents
children 9d61abb3cfaf
comparison
equal deleted inserted replaced
7:eadc5c19d665 8:967480d228b6
1 from unittest import TestCase
2
3 from gamelib.lab import Lab
4
5
6 class TestLab(TestCase):
7 def test_find_new_products(self):
8 lab = Lab()
9 print lab.find_new_products(None)
10
11 def test_find_new_research(self):
12 lab = Lab()
13 print lab.find_new_research(None)