Prepare version 1.10.0 + pep8

This commit is contained in:
Vincent Jacques
2012-12-25 13:14:52 +01:00
parent 1be7694229
commit c58d550b67
4 changed files with 13 additions and 24 deletions
+1
View File
@@ -15,6 +15,7 @@
import github.GithubObject
class GitignoreTemplate(github.GithubObject.BasicGithubObject):
@property
def source(self):
+1 -1
View File
@@ -106,4 +106,4 @@ class Github(Framework.TestCase):
t = self.g.get_gitignore_template("C++")
self.assertEqual(t.name, "C++")
self.assertEqual(t.source,"# Compiled Object files\n*.slo\n*.lo\n*.o\n\n# Compiled Dynamic libraries\n*.so\n*.dylib\n\n# Compiled Static libraries\n*.lai\n*.la\n*.a\n")
self.assertEqual(t.source, "# Compiled Object files\n*.slo\n*.lo\n*.o\n\n# Compiled Dynamic libraries\n*.so\n*.dylib\n\n# Compiled Static libraries\n*.lai\n*.la\n*.a\n")