| 1866 | |
| 1867 | |
| 1868 | class TestCRegExp(TraitTestBase): |
| 1869 | def coerce(self, value): |
| 1870 | return re.compile(value) |
| 1871 | |
| 1872 | obj = CRegExpTrait() |
| 1873 | |
| 1874 | _default_value = re.compile(r"") |
| 1875 | _good_values = [r"\d+", re.compile(r"\d+")] |
| 1876 | _bad_values = ["(", None, ()] |
| 1877 | |
| 1878 | |
| 1879 | class DictTrait(HasTraits): |
nothing calls this directly
no test coverage detected
searching dependent graphs…