summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorElvin Efendi <elvin.efendiev@shopify.com>2015-12-07 15:27:42 -0500
committerElvin Efendi <elvin.efendiev@shopify.com>2015-12-07 15:27:42 -0500
commit68dd88766604145a8c8d16b22a68a9850ce92564 (patch)
treed696c613d390b4d58eee217e6054c0858a8a16f3 /spec
parentd2e8c0e96460b34371bbb72f0ecf878321fbf8e3 (diff)
fix test
Diffstat (limited to 'spec')
-rw-r--r--spec/githubrepo_spec.rb4
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