2014-02-05 23:35:37 +00:00
|
|
|
require File.expand_path("../../../../base", __FILE__)
|
|
|
|
|
|
|
|
require Vagrant.source_root.join("plugins/synced_folders/nfs/config")
|
|
|
|
|
|
|
|
describe VagrantPlugins::SyncedFolderNFS::Config do
|
|
|
|
subject { described_class.new }
|
|
|
|
|
2014-04-22 03:37:14 +00:00
|
|
|
context "defaults" do
|
|
|
|
before do
|
2014-02-05 23:35:37 +00:00
|
|
|
subject.finalize!
|
|
|
|
end
|
|
|
|
|
2017-04-06 21:57:46 +00:00
|
|
|
its(:functional) { should be(true) }
|
2014-04-22 03:37:14 +00:00
|
|
|
its(:map_gid) { should eq(:auto) }
|
|
|
|
its(:map_uid) { should eq(:auto) }
|
2014-02-05 23:35:37 +00:00
|
|
|
end
|
|
|
|
end
|