| 1568 | |
| 1569 | |
| 1570 | class TestBytes(TraitTestBase): |
| 1571 | obj = BytesTrait() |
| 1572 | |
| 1573 | _default_value = b"string" |
| 1574 | _good_values = [b"10", b"-10", b"10L", b"-10L", b"10.1", b"-10.1", b"string"] |
| 1575 | _bad_values = [10, -10, 10.1, -10.1, 1j, [10], ["ten"], {"ten": 10}, (10,), None, "string"] |
| 1576 | |
| 1577 | |
| 1578 | class UnicodeTrait(HasTraits): |
nothing calls this directly
no test coverage detected
searching dependent graphs…