| Total Complexity | 1 | 
| Total Lines | 11 | 
| Duplicated Lines | 0 % | 
| Changes | 4 | ||
| Bugs | 0 | Features | 0 | 
| 1 | import sys  | 
            ||
| 8 | class TestSkinRainmeterSectionCompletion(TestCase):  | 
            ||
| 9 | """  | 
            ||
| 10 | Testing the skin/rainmeter section completion  | 
            ||
| 11 | """  | 
            ||
| 12 | |||
| 13 | def not_rainmeter_should_return_none(self):  | 
            ||
| 14 | """  | 
            ||
| 15 | The given section is 'Different' but we are moving in the Rainmeter section  | 
            ||
| 16 | thus only 'Rainmeter' is allowed  | 
            ||
| 17 | """  | 
            ||
| 18 | complete = rainmeter_section.SkinRainmeterSectionAutoComplete()  | 
            ||
| 19 | value_completion = complete.get_value_context_completion(None, None, None, None, "Different", None, None)  | 
            ||
| 22 |