summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/units/test_log.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/units/test_log.rb b/tests/units/test_log.rb
index 7bcd83b..2d4b0d5 100644
--- a/tests/units/test_log.rb
+++ b/tests/units/test_log.rb
@@ -32,6 +32,18 @@ class TestLog < Test::Unit::TestCase
assert_equal(30, l.size)
end
+ def test_get_log_grep
+ l = @git.log.grep("search")
+ assert_equal(2, l.size)
+ end
+
+ def test_get_log_author
+ l = @git.log(5).author("chacon")
+ assert_equal(5, l.size)
+ l = @git.log(5).author("lazySusan")
+ assert_equal(0, l.size)
+ end
+
def test_get_log_since_file
l = @git.log.object('example.txt')
assert_equal(30, l.size)