コード例 #1
0
ファイル: test_store.py プロジェクト: jmikedupont2/pythoscope
 def test_module_of_for_test_methods(self):
     tmeth = TestMethod('tmeth', parent=self.tclass)
     assert_equal(self.module, module_of(tmeth))
コード例 #2
0
ファイル: test_store.py プロジェクト: jmikedupont2/pythoscope
 def test_module_of_for_method(self):
     meth = Method('meth', klass=self.klass)
     assert_equal(self.module, module_of(meth))
コード例 #3
0
ファイル: test_store.py プロジェクト: jmikedupont2/pythoscope
 def test_module_of_for_test_classes(self):
     assert_equal(self.module, module_of(self.tclass))
コード例 #4
0
ファイル: test_store.py プロジェクト: jmikedupont2/pythoscope
 def test_module_of_for_module(self):
     assert_equal(self.module, module_of(self.module))
コード例 #5
0
ファイル: test_store.py プロジェクト: jmikedupont2/pythoscope
 def test_module_of_for_function(self):
     fun = Function('fun', module=self.module)
     assert_equal(self.module, module_of(fun))
コード例 #6
0
ファイル: test_store.py プロジェクト: Br3nda/pythoscope
 def test_module_of_for_test_methods(self):
     tmeth = TestMethod('tmeth', parent=self.tclass)
     assert_equal(self.module, module_of(tmeth))
コード例 #7
0
ファイル: test_store.py プロジェクト: Br3nda/pythoscope
 def test_module_of_for_test_classes(self):
     assert_equal(self.module, module_of(self.tclass))
コード例 #8
0
ファイル: test_store.py プロジェクト: Br3nda/pythoscope
 def test_module_of_for_method(self):
     meth = Method('meth', klass=self.klass)
     assert_equal(self.module, module_of(meth))
コード例 #9
0
ファイル: test_store.py プロジェクト: Br3nda/pythoscope
 def test_module_of_for_function(self):
     fun = Function('fun', module=self.module)
     assert_equal(self.module, module_of(fun))
コード例 #10
0
ファイル: test_store.py プロジェクト: Br3nda/pythoscope
 def test_module_of_for_module(self):
     assert_equal(self.module, module_of(self.module))