import unittest
import p4

import soul

import __main__ as this

soul.findmate(age=23, sex=soul.THE_RIGHT_ONE, humour='subtle')

primes = (2, 3, 5, 7, 11, 13, 17)

mary = {}

def army(in_the=False):
	print "I am %sin the army now!" % ('' if in_the else 'not ')

class P4Tester(unittest.TestCase):
	def test_sample(self):
		true = lambda _: True
		self.assertEquals((7+3+1+0+0,), p4.module_game(true, this))

if __name__ == '__main__':
	unittest.main()
