spec/gitmine_spec.rb in gitmine-0.1.5 vs spec/gitmine_spec.rb in gitmine-0.1.6

- old
+ new

@@ -1,13 +1,13 @@ require 'spec_helper' -describe Gitmine::Gitmine do +describe Gitmine do before do File.stub!(:read) { "ref: refs/heads/wip" } end - let(:gitmine) { Gitmine::Gitmine.new } + let(:gitmine) { Gitmine.new } let(:commit_1) do mock( :message => "Commit 1 #1234", :committer => "Sam", @@ -39,9 +39,9 @@ Grit::Repo.stub!(:new) { grit_repo } end it "should check out to the current branch" do Grit::Repo.should_receive(:new).with(ENV['PWD']) { grit_repo } - Gitmine::Gitmine.new + Gitmine.new end end end