(self)
| 69 | |
| 70 | class TestSortingFunctionDoesNotExist(TestISortError): |
| 71 | def setup_class(self): |
| 72 | self.instance: exceptions.SortingFunctionDoesNotExist = ( |
| 73 | exceptions.SortingFunctionDoesNotExist("round", ["square", "peg"]) |
| 74 | ) |
| 75 | |
| 76 | def test_variables(self): |
| 77 | assert self.instance.sort_order == "round" |
nothing calls this directly
no outgoing calls
no test coverage detected