mirror of
https://github.com/vagrant-libvirt/vagrant-libvirt.git
synced 2025-02-25 18:55:27 -06:00
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.
22 lines
646 B
Ruby
22 lines
646 B
Ruby
require 'spec_helper'
|
|
|
|
describe VagrantPlugins::ProviderLibvirt::Action::SetNameOfDomain do
|
|
before :each do
|
|
@env = EnvironmentHelper.new
|
|
end
|
|
|
|
it 'builds unique domain name' do
|
|
@env.random_hostname = true
|
|
dmn = VagrantPlugins::ProviderLibvirt::Action::SetNameOfDomain.new(Object.new, @env)
|
|
first = dmn.build_domain_name(@env)
|
|
second = dmn.build_domain_name(@env)
|
|
first.should_not eq(second)
|
|
end
|
|
|
|
it 'builds simple domain name' do
|
|
@env.default_prefix = 'pre_'
|
|
dmn = VagrantPlugins::ProviderLibvirt::Action::SetNameOfDomain.new(Object.new, @env)
|
|
dmn.build_domain_name(@env).should eq('pre_')
|
|
end
|
|
end
|