Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31508e1 commit 702f390Copy full SHA for 702f390
test/git/test_submodule.py
100755
100644
@@ -1,3 +1,4 @@
1
+# -*- coding: utf-8 -*-
2
# test_submodule.py
3
# Copyright (C) 2008-2010 Michael Trier ([email protected]) and contributors
4
#
@@ -18,7 +19,7 @@
18
19
from test.testlib import *
20
from git import *
21
-class test_Submodule(unittest.TestCase):
22
+class TestSubmodule(unittest.TestCase):
23
24
def setUp(self):
25
_p = tempfile.mkdtemp()
@@ -59,6 +60,6 @@ def test_submodule_attributes(self):
59
60
if __name__ == "__main__":
61
unittest.TextTestRunner(verbosity=2).run(
62
unittest.TestSuite([
- unittest.TestLoader().loadTestsFromTestCase(test_Submodule),
63
+ unittest.TestLoader().loadTestsFromTestCase(TestSubmodule),
64
])
65
)
0 commit comments