| 1325 | |
| 1326 | |
| 1327 | class OrTraitTest(TraitTestBase): |
| 1328 | obj = OrTrait() |
| 1329 | _good_values = [True, False, "ten"] |
| 1330 | _bad_values = [[], (0,), 1j] |
| 1331 | |
| 1332 | |
| 1333 | class IntTrait(HasTraits): |
nothing calls this directly
no test coverage detected
searching dependent graphs…