| Total Complexity | 1 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | import sublime |
||
| 6 | class TestThemeSwitcher(TestCase): |
||
| 7 | """Test class wrapper using unittest.""" |
||
| 8 | |||
| 9 | # pylint: disable=W0703; This is acceptable since we are testing it not failing |
||
| 10 | |||
| 11 | def test_edit_theme_command(self): |
||
| 12 | """Should run through.""" |
||
| 13 | win = sublime.active_window() |
||
| 14 | win.run_command( |
||
| 15 | "edit_theme", |
||
| 16 | { |
||
| 17 | "theme": "Rainmeter (Light)" |
||
| 18 | } |
||
| 20 |