コード例 #1
0
ファイル: test_dependency_list.py プロジェクト: swstack/epoxy
 def test_component_list_extra(self):
     with self.assertRaises(ValueError):
         ComponentList.from_dependencies(dependency_list=['a'], a=1, b=2)
コード例 #2
0
 def test_component_list_extra(self):
     with self.assertRaises(ValueError):
         ComponentList.from_dependencies(dependency_list=['a'],
                                         a=1, b=2)
コード例 #3
0
ファイル: test_dependency_list.py プロジェクト: swstack/epoxy
 def test_component_list_missing(self):
     with self.assertRaises(ValueError):
         ComponentList.from_dependencies(dependency_list=['a'])
コード例 #4
0
 def test_component_list_missing(self):
     with self.assertRaises(ValueError):
         ComponentList.from_dependencies(dependency_list=['a'])