From bceadeb7d377b6ba36de4f5de5a5f5034f89bee6 Mon Sep 17 00:00:00 2001 From: Scott Chacon Date: Tue, 27 May 2008 12:36:07 -0700 Subject: added grep and author searching to logs --- tests/units/test_log.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'tests') 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) -- cgit