()
| 48 | |
| 49 | |
| 50 | def test_available(): |
| 51 | # Private name should not be listed in available but still usable. |
| 52 | assert '_classic_test_patch' not in style.available |
| 53 | assert '_classic_test_patch' in style.library |
| 54 | |
| 55 | with temp_style('_test_', DUMMY_SETTINGS), temp_style('dummy', DUMMY_SETTINGS): |
| 56 | assert 'dummy' in style.available |
| 57 | assert 'dummy' in style.library |
| 58 | assert '_test_' not in style.available |
| 59 | assert '_test_' in style.library |
| 60 | assert 'dummy' not in style.available |
| 61 | assert '_test_' not in style.available |
| 62 | |
| 63 | |
| 64 | def test_use(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…