Update unit test for building simple domain name

Make the unit test match the new requirement that if a _ postfix is desired
when default_prefix is defined, then it must be added to the default_prefix.
This commit is contained in:
Brian J. Murrell
2018-04-18 10:59:19 -04:00
committed by GitHub
parent 9f203f75a2
commit 2cfec56325

View File

@@ -14,7 +14,7 @@ describe VagrantPlugins::ProviderLibvirt::Action::SetNameOfDomain do
end
it 'builds simple domain name' do
@env.default_prefix = 'pre'
@env.default_prefix = 'pre_'
dmn = VagrantPlugins::ProviderLibvirt::Action::SetNameOfDomain.new(Object.new, @env)
dmn.build_domain_name(@env).should eq('pre_')
end