コード例 #1
0
ファイル: such.py プロジェクト: Carter0/learningPython
 def __call__(self, testcase, *args):
     # ... only if it takes an arg
     self._helper = testcase
     util.call_with_args_if_expected(self.func, testcase, *args)
コード例 #2
0
ファイル: such.py プロジェクト: Carter0/learningPython
 def tearDown(cls):
     for func in cls.teardowns:
         util.call_with_args_if_expected(func, self)
コード例 #3
0
ファイル: such.py プロジェクト: Carter0/learningPython
 def setUp(cls):
     for func in cls.setups:
         util.call_with_args_if_expected(func, self)
コード例 #4
0
ファイル: such.py プロジェクト: hugovk/nose2
 def __call__(self, testcase, *args):
     # ... only if it takes an arg
     self._helper = testcase
     util.call_with_args_if_expected(self.func, testcase, *args)
コード例 #5
0
ファイル: such.py プロジェクト: hugovk/nose2
 def tearDown(cls):
     for func in cls.teardowns:
         util.call_with_args_if_expected(func, self)
コード例 #6
0
ファイル: such.py プロジェクト: hugovk/nose2
 def setUp(cls):
     for func in cls.setups:
         util.call_with_args_if_expected(func, self)