Sha256: 7ddfbc26bf2d8734a5fd4a6bcb671b4aa5d67819a0a5e766d7372de249e7f44a
Contents?: true
Size: 788 Bytes
Versions: 19
Compression:
Stored size: 788 Bytes
Contents
#!/usr/bin/env ruby require File.dirname(__FILE__) + '/../lib/puppettest' require 'puppettest' require 'puppet/network/rights' class TestRights < Test::Unit::TestCase include PuppetTest def setup super @store = Puppet::Network::Rights.new end def test_rights assert_raise(ArgumentError, "Did not fail on unknown right") { @store.allowed?(:write, "host.madstop.com", "0.0.0.0") } assert_nothing_raised { @store.newright(:write) } assert( ! @store.allowed?(:write, "host.madstop.com", "0.0.0.0"), "Defaulted to allowing access") assert_nothing_raised { @store[:write].info "This is a log message" } assert_logged(:info, /This is a log message/, "did not log from Rights") end end
Version data entries
19 entries across 19 versions & 1 rubygems