Sha256: 81947804cc6f2d99cfe689dc42b03f097ebf2d09c8760fead03ece31c9da9b31
Contents?: true
Size: 555 Bytes
Versions: 9
Compression:
Stored size: 555 Bytes
Contents
require_relative "../../../base" require "vagrant/util/template_renderer" describe "templates/guests/fedora/network_dhcp" do let(:template) { "guests/fedora/network_dhcp" } it "renders the template" do result = Vagrant::Util::TemplateRenderer.render(template, options: { device: "en0", }) expect(result).to eq <<-EOH.gsub(/^ {6}/, "") #VAGRANT-BEGIN # The contents below are automatically generated by Vagrant. Do not modify. BOOTPROTO=dhcp ONBOOT=yes DEVICE=en0 #VAGRANT-END EOH end end
Version data entries
9 entries across 9 versions & 3 rubygems