From efcce7fc123b9e64fb9d93224e4e78d09144af3d Mon Sep 17 00:00:00 2001 From: scott Chacon Date: Sat, 10 Nov 2007 15:34:12 -0800 Subject: got clone and init to work - my first writing functions --- tests/units/test_lib.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/units/test_lib.rb') diff --git a/tests/units/test_lib.rb b/tests/units/test_lib.rb index 03a4411..5fbd896 100644 --- a/tests/units/test_lib.rb +++ b/tests/units/test_lib.rb @@ -82,10 +82,10 @@ class TestLib < Test::Unit::TestCase def test_branches_all branches = @lib.branches_all assert(branches.size > 0) - assert(branches.select { |b| b.current }.size > 0) # has a current branch - assert(branches.select { |b| b.remote }.size > 0) # has a remote branch - assert(branches.select { |b| !b.remote }.size > 0) # has a local branch - assert(branches.select { |b| b.name == 'master' }.size > 0) # has a master branch + assert(branches.select { |b| b[1] }.size > 0) # has a current branch + assert(branches.select { |b| /\//.match(b[0]) }.size > 0) # has a remote branch + assert(branches.select { |b| !/\//.match(b[0]) }.size > 0) # has a local branch + assert(branches.select { |b| /master/.match(b[0]) }.size > 0) # has a master branch end def test_config_remote -- cgit