Total Complexity | 2 |
Total Lines | 11 |
Duplicated Lines | 0 % |
1 | import unittest |
||
7 | class LocalBearTest(unittest.TestCase): |
||
|
|||
8 | |||
9 | def test_api(self): |
||
10 | test_object = LocalBear(Section("name"), None) |
||
11 | self.assertRaises(NotImplementedError, |
||
12 | test_object.run, |
||
13 | "filename", |
||
14 | ["file\n"]) |
||
15 | |||
16 | def test_kind(self): |
||
17 | self.assertEqual(LocalBear.kind(), BEAR_KIND.LOCAL) |
||
18 |