1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 | nosetests /tmp/foo.py
F.
======================================================================
FAIL: test_assert_return (foo.TestMe)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/tmp/foo.py", line 11, in test_assert_return
self.assertTrue(f)
AssertionError: None is not true
----------------------------------------------------------------------
Ran 2 tests in 0.001s
FAILED (failures=1)
shell returned 1
|