Add test coverage on helper method

This commit is contained in:
Chris Roberts 2018-01-16 15:39:31 -08:00
parent b1c38c282e
commit 48275614cf
1 changed files with 24 additions and 0 deletions

View File

@ -104,4 +104,28 @@ describe "VagrantPlugins::GuestLinux::Cap::MountSMBSharedFolder" do
end
end
end
describe ".merge_mount_options" do
let(:base){ ["opt1", "opt2=on", "opt3", "opt4,opt5=off"] }
let(:override){ ["opt8", "opt4=on,opt6,opt7=true"] }
context "with no override" do
it "should split options into individual options" do
result = cap.merge_mount_options(base, [])
expect(result.size).to eq(5)
end
end
context "with overrides" do
it "should merge all options" do
result = cap.merge_mount_options(base, override)
expect(result.size).to eq(8)
end
it "should override options defined in base" do
result = cap.merge_mount_options(base, override)
expect(result).to include("opt4=on")
end
end
end
end