(self)
| 666 | is_(bool(m), True) |
| 667 | |
| 668 | def test_checkfirst_from_bool(self): |
| 669 | eq_(CheckFirst(True), CheckFirst.ALL) |
| 670 | eq_(CheckFirst(False), CheckFirst.NONE) |
| 671 | eq_(CheckFirst(0), CheckFirst.NONE) |
| 672 | eq_(CheckFirst(False), CheckFirst.NONE) |
nothing calls this directly
no test coverage detected