Conditions | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
1 | import os |
||
15 | def setUp(self): |
||
16 | self.section = Section("test section") |
||
17 | self.uut = JSHintBear(self.section, Queue()) |
||
18 | self.test_file1 = os.path.join(os.path.dirname(__file__), |
||
19 | "test_files", |
||
20 | "jshint_test1.js") |
||
21 | self.test_file2 = os.path.join(os.path.dirname(__file__), |
||
22 | "test_files", |
||
23 | "jshint_test2.js") |
||
24 | self.conf_file = os.path.join(os.path.dirname(__file__), |
||
25 | "test_files", |
||
26 | "jshint_config.js") |
||
27 | |||
61 |