27 lines
666 B
Ruby
27 lines
666 B
Ruby
require "pathname"
|
|
|
|
require File.expand_path("../../base", __FILE__)
|
|
|
|
describe Vagrant::MachineState do
|
|
include_context "unit"
|
|
|
|
let(:id) { :some_state }
|
|
let(:short) { "foo" }
|
|
let(:long) { "I am a longer foo" }
|
|
|
|
it "should give access to the id" do
|
|
instance = described_class.new(id, short, long)
|
|
instance.id.should == id
|
|
end
|
|
|
|
it "should give access to the short description" do
|
|
instance = described_class.new(id, short, long)
|
|
instance.short_description.should == short
|
|
end
|
|
|
|
it "should give access to the long description" do
|
|
instance = described_class.new(id, short, long)
|
|
instance.long_description.should == long
|
|
end
|
|
end
|