コード例 #1
0
 def test_has_fixer__enabled(self):
     tool = Puppet(self.problems, {'fixer': True}, root_dir)
     self.assertEqual(True, tool.has_fixer())
コード例 #2
0
ファイル: test_puppet.py プロジェクト: markstory/lint-review
 def test_has_fixer__enabled(self):
     tool = Puppet(self.problems, {'fixer': True}, root_dir)
     self.assertEqual(True, tool.has_fixer())
コード例 #3
0
 def test_has_fixer__not_enabled(self):
     tool = Puppet(self.problems, {}, root_dir)
     self.assertEqual(False, tool.has_fixer())
コード例 #4
0
ファイル: test_puppet.py プロジェクト: markstory/lint-review
 def test_has_fixer__not_enabled(self):
     tool = Puppet(self.problems, {}, root_dir)
     self.assertEqual(False, tool.has_fixer())