| 1918 | |
| 1919 | |
| 1920 | class TestInstanceKeyValidatedDict(TraitTestBase): |
| 1921 | obj = KeyValidatedDictTrait() |
| 1922 | |
| 1923 | _default_value = {"foo": "1"} |
| 1924 | _good_values = [{"foo": "0", "bar": "1"}] |
| 1925 | _bad_values = [{"foo": "0", 0: "1"}] |
| 1926 | |
| 1927 | |
| 1928 | class FullyValidatedDictTrait(HasTraits): |
nothing calls this directly
no test coverage detected
searching dependent graphs…