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 26 27 28 29 30 31 32 33 34 35 36 37
|
require "tmpdir"
require "librarian/error"
require "librarian/action/ensure"
module Librarian
describe Action::Ensure do
let(:env) { double }
let(:action) { described_class.new(env) }
before do
allow(env).to receive(:specfile_name).and_return("Specfile")
end
describe "#run" do
context "when the environment does not know its project path" do
before { allow(env).to receive(:project_path).and_return(nil) }
it "should raise an error describing that the specfile is mising" do
expect { action.run }.to raise_error(Error, "Cannot find Specfile!")
end
end
context "when the environment knows its project path" do
before { allow(env).to receive(:project_path) { Dir.tmpdir } }
it "should not raise an error" do
expect { action.run }.to_not raise_error
end
end
end
end
end
|