vaguerent/test/unit/templates/guests/suse/network_dhcp_test.rb

25 lines
631 B
Ruby

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
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: {
device: "eth0"
})
expect(result).to eq <<-EOH.gsub(/^ {6}/, "")
#VAGRANT-BEGIN
# The contents below are automatically generated by Vagrant. Do not modify.
BOOTPROTO='dhcp'
STARTMODE='auto'
DEVICE='eth0'
#VAGRANT-END
EOH
end
end