32 lines
762 B
Ruby
32 lines
762 B
Ruby
require "pathname"
|
|
require "tmpdir"
|
|
|
|
require File.expand_path("../../../../base", __FILE__)
|
|
|
|
describe Vagrant::Action::Builtin::Message do
|
|
let(:app) { lambda { |env| } }
|
|
let(:env) { { ui: ui } }
|
|
|
|
let(:ui) { double("ui") }
|
|
|
|
describe "#call" do
|
|
it "outputs the given message" do
|
|
subject = described_class.new(app, env, "foo")
|
|
|
|
expect(ui).to receive(:output).with("foo").ordered
|
|
expect(app).to receive(:call).with(env).ordered
|
|
|
|
subject.call(env)
|
|
end
|
|
|
|
it "outputs the given message after the call" do
|
|
subject = described_class.new(app, env, "foo", post: true)
|
|
|
|
expect(app).to receive(:call).with(env).ordered
|
|
expect(ui).to receive(:output).with("foo").ordered
|
|
|
|
subject.call(env)
|
|
end
|
|
end
|
|
end
|