|
@@ -135,3 +135,21 @@ From: Jelmer Vernooy <jelmer@debian.org>
|
|
|
c, diff, version = git_am_patch_split(StringIO(text))
|
|
|
self.assertEquals("Jelmer Vernooy <jelmer@debian.org>", c.author)
|
|
|
self.assertEquals('Added unit tests for dulwich.object_store.tree_lookup_path.\n\n* dulwich/tests/test_object_store.py\n (TreeLookupPathTests): This test case contains a few tests that ensure the\n tree_lookup_path function works as expected.\n', c.message)
|
|
|
+
|
|
|
+ def test_extract_no_version_tail(self):
|
|
|
+ text = """From ff643aae102d8870cac88e8f007e70f58f3a7363 Mon Sep 17 00:00:00 2001
|
|
|
+From: Jelmer Vernooij <jelmer@samba.org>
|
|
|
+Date: Thu, 15 Apr 2010 15:40:28 +0200
|
|
|
+Subject: [Dulwich-users] [PATCH] Added unit tests for
|
|
|
+ dulwich.object_store.tree_lookup_path.
|
|
|
+
|
|
|
+From: Jelmer Vernooy <jelmer@debian.org>
|
|
|
+
|
|
|
+---
|
|
|
+ pixmaps/prey.ico | Bin 9662 -> 9662 bytes
|
|
|
+ 1 files changed, 0 insertions(+), 0 deletions(-)
|
|
|
+ mode change 100755 => 100644 pixmaps/prey.ico
|
|
|
+
|
|
|
+"""
|
|
|
+ c, diff, version = git_am_patch_split(StringIO(text))
|
|
|
+ self.assertIs(None, version)
|