Sha256: 269b3a45c552974cf1b120a5e9abe1b11da2d103818432b4b49602e964cbc171
Contents?: true
Size: 1.61 KB
Versions: 5
Compression:
Stored size: 1.61 KB
Contents
require 'test_helper' require 'net' class DhcpTest < ActiveSupport::TestCase test "dhcp record should not be created without a mac" do assert_raise Net::Validations::Error do Net::DHCP::Record.new :hostname => "test", "proxy" => smart_proxies(:one) end end test "dhcp record should not be created without a network" do assert_raise Net::Validations::Error do Net::DHCP::Record.new :hostname => "test", :mac => "aa:bb:cc:dd:ee:ff", "proxy" => smart_proxies(:one) end end test "dhcp record should not be created without an ip" do assert_raise Net::Validations::Error do Net::DHCP::Record.new :hostname => "test", :mac => "aa:bb:cc:dd:ee:ff", :network => "127.0.0.0", "proxy" => smart_proxies(:one) end end test "record should have dhcp attributes" do record = Net::DHCP::Record.new(:hostname => "test", :mac => "aa:bb:cc:dd:ee:ff", :network => "127.0.0.0", :ip => "127.0.0.1", "proxy" => smart_proxies(:one)) assert_equal({:hostname => "test", :mac => "aa:bb:cc:dd:ee:ff",:network => "127.0.0.0", :ip => "127.0.0.1"}, record.send(:attrs)) end test "record should be equal if their attrs are the same" do record1 = Net::DHCP::Record.new(:hostname => "test", :mac => "aa:bb:cc:dd:ee:ff", :network => "127.0.0.0", :ip => "127.0.0.1", "proxy" => smart_proxies(:one)) record2 = Net::DHCP::Record.new(:hostname => "test", :mac => "aa:bb:cc:dd:ee:ff", :network => "127.0.0.0", :ip => "127.0.0.1", "proxy" => smart_proxies(:one)) assert_equal record1, record2 end end
Version data entries
5 entries across 5 versions & 1 rubygems