diff options
Diffstat (limited to 'git/test/test_actor.py')
-rw-r--r-- | git/test/test_actor.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/git/test/test_actor.py b/git/test/test_actor.py index 06aa1aed..40e307ba 100644 --- a/git/test/test_actor.py +++ b/git/test/test_actor.py @@ -8,7 +8,9 @@ import os from git.test.lib import * from git import * + class TestActor(object): + def test_from_string_should_separate_name_and_email(self): a = Actor._from_string("Michael Trier <mtrier@example.com>") assert_equal("Michael Trier", a.name) |