spec/vagrant-openstack/config_spec.rb in vagrant-openstack-provider-0.1.1 vs spec/vagrant-openstack/config_spec.rb in vagrant-openstack-provider-0.1.2
- old
+ new
@@ -6,11 +6,11 @@
Coveralls::SimpleCov::Formatter
]
SimpleCov.start
end
-require "vagrant-openstack/config"
+require "vagrant-openstack-provider/config"
require 'fog'
describe VagrantPlugins::Openstack::Config do
describe "defaults" do
let(:vagrant_public_key) { Vagrant.source_root.join("keys/vagrant.pub") }
@@ -57,10 +57,10 @@
subject.finalize!
subject.send(attribute).should == "foo"
end
end
- it "should not default rsync_includes if overridden" do
+ it "should not default rsync_includes if overridden" do
inc = "core"
subject.send(:rsync_include, inc)
subject.finalize!
subject.send(:rsync_includes).should include(inc)
end