Added basic unit test
This commit is contained in:
parent
76e3ad988f
commit
d7714f058d
|
@ -1,7 +1,7 @@
|
||||||
#VAGRANT-BEGIN
|
#VAGRANT-BEGIN
|
||||||
# The contents below are automatically generated by Vagrant. Do not modify.
|
# The contents below are automatically generated by Vagrant. Do not modify.
|
||||||
NM_CONTROLLED=no
|
NM_CONTROLLED=no
|
||||||
BOOTPROTO=none
|
BOOTPROTO=static
|
||||||
ONBOOT=yes
|
ONBOOT=yes
|
||||||
IPV6INIT=yes
|
IPV6INIT=yes
|
||||||
IPV6ADDR=<%= options[:ip] %>
|
IPV6ADDR=<%= options[:ip] %>
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
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
|
Loading…
Reference in New Issue