spec/unit/berkshelf/vagrant_spec.rb in vagrant-berkshelf-2.0.1 vs spec/unit/berkshelf/vagrant_spec.rb in vagrant-berkshelf-3.0.0.rc1
- old
+ new
@@ -11,11 +11,10 @@
subject.shelf_path.should include(Berkshelf.berkshelf_path)
end
end
describe "::mkshelf" do
-
it "returns a String" do
subject.mkshelf().should be_a(String)
end
it "is a pathname including the shelf_path" do
@@ -25,9 +24,8 @@
it "is a pathname including machine name" do
machine_name = 'fantastic_machine'
subject.mkshelf(machine_name).should include(machine_name)
end
-
end
end
end