guests/pld: Add tests for flavor

This commit is contained in:
Seth Vargo 2016-06-05 17:09:30 -04:00
parent 9702abb5c4
commit cf989d1534
No known key found for this signature in database
GPG Key ID: 905A90C2949E8787
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
require_relative "../../../../base"
describe "VagrantPlugins::GuestPld::Cap::Flavor" do
let(:caps) do
VagrantPlugins::GuestPld::Plugin
.components
.guest_capabilities[:pld]
end
let(:machine) { double("machine") }
describe ".flavor" do
let(:cap) { caps.get(:flavor) }
let(:name) { "banana-rama.example.com" }
it "is pld" do
expect(cap.flavor(machine)).to be(:pld)
end
end
end