| 313 | def test_assign_other_raises(self): |
| 314 | def new_trait_class(case_sensitive, substring_matching): |
| 315 | class Example(HasTraits): |
| 316 | color = FuzzyEnum( |
| 317 | color_choices, |
| 318 | case_sensitive=case_sensitive, |
| 319 | substring_matching=substring_matching, |
| 320 | ) |
| 321 | |
| 322 | return Example |
| 323 |
nothing calls this directly
no test coverage detected
searching dependent graphs…