Sha256: 65d156e4076fdaa973e9aa04cad9af916e6f15d6cad281b16371c460caaf59ad

Contents?: true

Size: 1017 Bytes

Versions: 24

Compression:

Stored size: 1017 Bytes

Contents

require_relative "../../../base"

require "vagrant/util/template_renderer"

describe "templates/guests/arch/network_static" do
  let(:template) { "guests/arch/network_static" }

  it "renders the template" do
    result = Vagrant::Util::TemplateRenderer.render(template, options: {
      device:  "eth1",
      ip:      "1.1.1.1",
      netmask: "24",
    })
    expect(result).to eq <<-EOH.gsub(/^ {6}/, "")
      Connection=ethernet
      Description='A basic static ethernet connection'
      Interface=eth1
      IP=static
      Address=('1.1.1.1/24')
    EOH
  end

  it "includes the gateway" do
    result = Vagrant::Util::TemplateRenderer.render(template, options: {
      device:  "eth1",
      ip:      "1.1.1.1",
      gateway: "1.2.3.4",
      netmask: "24",
    })
    expect(result).to eq <<-EOH.gsub(/^ {6}/, "")
      Connection=ethernet
      Description='A basic static ethernet connection'
      Interface=eth1
      IP=static
      Address=('1.1.1.1/24')
      Gateway='1.2.3.4'
    EOH
  end
end

Version data entries

24 entries across 20 versions & 4 rubygems

Version Path
vagrant-unbundled-1.9.5.1 test/unit/templates/guests/arch/network_static_test.rb
vagrant-unbundled-1.9.1.1 test/unit/templates/guests/arch/network_static_test.rb
vagrant-unbundled-1.8.5.2 test/unit/templates/guests/arch/network_static_test.rb
vagrant-unbundled-1.8.5.1 test/unit/templates/guests/arch/network_static_test.rb