Sha256: 342bcafc416af3c44d8f6a75816a902d7e6a97be79f21b7df595a020be5a1ea6
Contents?: true
Size: 666 Bytes
Versions: 19
Compression:
Stored size: 666 Bytes
Contents
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
Version data entries
19 entries across 19 versions & 6 rubygems