Test of failing tests

This commit is contained in:
Anton Beloglazov 2012-07-26 11:20:06 +10:00
parent 2ba3aa33fa
commit 0bf3d51d20
3 changed files with 7 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#!/bin/sh
python2 setup.py -q test
rm -rf openstack_neat.egg-info
rm -rf openstack_neat.egg-info distribute_setup.pyc

View File

@ -20,6 +20,6 @@ setup(
platforms='any',
packages=find_packages(),
test_suite='tests',
test_suite='tests',
tests_require=['pyqcy'],
)

View File

@ -8,4 +8,8 @@ class Arithmetic(TestCase):
x=int_(min=0), y=int_(min=0)
):
the_sum = x + y
assert the_sum >= x and the_sum >= y
assert the_sum >= x and the_sum < y
@qc
def dumb():
assert True