terracotta/tests/test_collector.py
Anton Beloglazov 6f654941d3 Fixed the tests
2012-07-26 11:23:36 +10:00

16 lines
250 B
Python

from pyqcy import *
class Arithmetic(TestCase):
@qc
def addition_actually_works(
x=int_(min=0), y=int_(min=0)
):
the_sum = x + y
assert the_sum >= x and the_sum >= y
@qc
def dumb():
assert True