summaryrefslogtreecommitdiff
path: root/spec/githubrepo_spec.rb
blob: c98244d1f857f30c31d8939ace5d444fb3fbc7fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
require 'spec_helper'
require 'rugged'
require 'oxidized/hook/githubrepo'

describe Oxidized::Node do
  before(:each) do
    asetus = Asetus.new
    asetus.cfg.output.git.repo = 'foo.git'
    Oxidized.stubs(:asetus).returns(asetus)
    repo = mock()
    remote = mock()
    remote.expects(:url).returns('github.com/foo.git')
    remote.expects(:push).returns(true)
    repo.expects(:remotes).returns({'origin' => remote})
    repo.expects(:path).returns('foo.git')
    Rugged::Repository.expects(:new).with('foo.git').returns(repo)
  end

  describe "#run_hook" do
    it "will push to the remote repository" do
      gr = GithubRepo.new
      gr.run_hook(nil).must_equal true
    end
  end
end