mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-05-28 04:36:05 -04:00
wip: Failing test?
This commit is contained in:
parent
5bc3cdc987
commit
9a3433673d
1 changed files with 13 additions and 0 deletions
|
|
@ -373,6 +373,19 @@ describe VagrantPlugins::Kernel_V2::VMConfig do
|
|||
end
|
||||
end
|
||||
|
||||
describe "#failed_up_message" do
|
||||
it "defaults to empty string" do
|
||||
subject.finalize!
|
||||
expect(subject.failed_up_message).to eq("")
|
||||
end
|
||||
|
||||
it "can be set" do
|
||||
subject.failed_up_message = "bar"
|
||||
subject.finalize!
|
||||
expect(subject.failed_up_message).to eq("bar")
|
||||
end
|
||||
end
|
||||
|
||||
describe "#provider and #__providers" do
|
||||
it "returns the providers in order" do
|
||||
subject.provider "foo"
|
||||
|
|
|
|||
Loading…
Reference in a new issue