2015-05-15 16:54:57 +00:00
|
|
|
require_relative "../../../base"
|
|
|
|
|
|
|
|
require "vagrant/util/template_renderer"
|
|
|
|
|
|
|
|
describe "templates/guests/suse/network_dhcp" do
|
|
|
|
let(:template) { "guests/suse/network_dhcp" }
|
|
|
|
|
|
|
|
it "renders the template" do
|
|
|
|
result = Vagrant::Util::TemplateRenderer.render(template, options: {
|
2016-06-06 16:34:45 +00:00
|
|
|
device: "eth0"
|
2015-05-15 16:54:57 +00:00
|
|
|
})
|
|
|
|
expect(result).to eq <<-EOH.gsub(/^ {6}/, "")
|
|
|
|
#VAGRANT-BEGIN
|
|
|
|
# The contents below are automatically generated by Vagrant. Do not modify.
|
2015-11-08 15:09:04 +00:00
|
|
|
BOOTPROTO='dhcp'
|
|
|
|
STARTMODE='auto'
|
2016-06-06 16:34:45 +00:00
|
|
|
DEVICE='eth0'
|
2015-05-15 16:54:57 +00:00
|
|
|
#VAGRANT-END
|
|
|
|
EOH
|
|
|
|
end
|
|
|
|
end
|