diff options
Diffstat (limited to 'spec')
| -rw-r--r-- | spec/githubrepo_spec.rb | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/spec/githubrepo_spec.rb b/spec/githubrepo_spec.rb index a193cd6..9b509e4 100644 --- a/spec/githubrepo_spec.rb +++ b/spec/githubrepo_spec.rb @@ -17,6 +17,10 @@ describe Oxidized::Node do      remote.expects(:push).returns(true)      repo.expects(:remotes).returns({'origin' => remote})      repo.expects(:path).returns('foo.git') +    repo_head = mock() +    repo_head.expects(:name).returns('origin/master') +    repo.expects(:head).returns(repo_head) +    repo.expects(:branches).returns({})      Rugged::Repository.expects(:new).with('foo.git').returns(repo)    end | 
