spec/gitmine_spec.rb in gitmine-0.1.3 vs spec/gitmine_spec.rb in gitmine-0.1.4.pre
- old
+ new
@@ -1,13 +1,13 @@
require 'spec_helper'
-describe Gitmine do
+describe Gitmine::Gitmine do
before do
File.stub!(:read) { "ref: refs/heads/wip" }
end
- let(:gitmine) { Gitmine.new }
+ let(:gitmine) { 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.new
+ Gitmine::Gitmine.new
end
end
end