From 702f3909520d39e8c343dece7b1e2d72e1479bbe Mon Sep 17 00:00:00 2001 From: "D.Dotsenko" Date: Sun, 31 Oct 2010 22:26:42 -0700 Subject: Changed the test_submodule.py to be detected by nose --- test/git/test_submodule.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) mode change 100755 => 100644 test/git/test_submodule.py (limited to 'test/git/test_submodule.py') diff --git a/test/git/test_submodule.py b/test/git/test_submodule.py old mode 100755 new mode 100644 index c724ed77..bd4179ce --- a/test/git/test_submodule.py +++ b/test/git/test_submodule.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # test_submodule.py # Copyright (C) 2008-2010 Michael Trier (mtrier@gmail.com) and contributors # @@ -18,7 +19,7 @@ import zipfile from test.testlib import * from git import * -class test_Submodule(unittest.TestCase): +class TestSubmodule(unittest.TestCase): def setUp(self): _p = tempfile.mkdtemp() @@ -59,6 +60,6 @@ class test_Submodule(unittest.TestCase): if __name__ == "__main__": unittest.TextTestRunner(verbosity=2).run( unittest.TestSuite([ - unittest.TestLoader().loadTestsFromTestCase(test_Submodule), + unittest.TestLoader().loadTestsFromTestCase(TestSubmodule), ]) ) -- cgit v1.2.1