Sha256: 06e6394f886cb4d3fc47b767c9ea5406bc1374a912076a0ecb239ae841e4e03d
Contents?: true
Size: 662 Bytes
Versions: 6
Compression:
Stored size: 662 Bytes
Contents
require_relative "../../../base" require "vagrant/util/template_renderer" describe "templates/guests/fedora/network_static6" do let(:template) { "guests/fedora/network_static6" } it "renders the template" do result = Vagrant::Util::TemplateRenderer.render(template, options: { device: "en0", ip: "fc00::10/64" }) expect(result).to eq <<-EOH.gsub(/^ {6}/, "") #VAGRANT-BEGIN # The contents below are automatically generated by Vagrant. Do not modify. NM_CONTROLLED=no BOOTPROTO=static ONBOOT=yes IPV6INIT=yes IPV6ADDR=fc00::10/64 DEVICE=en0 #VAGRANT-END EOH end end
Version data entries
6 entries across 6 versions & 2 rubygems