Test testing ports
()
| 8 | |
| 9 | |
| 10 | def test_testing(): |
| 11 | """Test testing ports""" |
| 12 | assert_raises(AssertionError, assert_in, 'foo', 'bar') |
| 13 | assert_in('foo', 'foobar') |
| 14 | assert_raises(AssertionError, assert_not_in, 'foo', 'foobar') |
| 15 | assert_not_in('foo', 'bar') |
| 16 | assert_raises(AssertionError, assert_is, None, 0) |
| 17 | assert_is(None, None) |
| 18 | |
| 19 | |
| 20 | run_tests_if_main() |
nothing calls this directly
no test coverage detected
searching dependent graphs…