Sha256: 11534549f8fa576f671f4e2e773847da77e8b9fae502a5265fff8c4bbe91401d
Contents?: true
Size: 753 Bytes
Versions: 5
Compression:
Stored size: 753 Bytes
Contents
# frozen_string_literal: true require_relative '../../spec_helper' require 'vagrant-libvirt/action/set_name_of_domain' 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) expect(first).to_not eq(second) end it 'builds simple domain name' do @env.default_prefix = 'pre_' dmn = VagrantPlugins::ProviderLibvirt::Action::SetNameOfDomain.new(Object.new, @env) expect(dmn.build_domain_name(@env)).to eq('pre_') end end
Version data entries
5 entries across 5 versions & 1 rubygems