Sha256: dbd47d1c8d2d432ef144618959e86645ef27fda4b820574f75f99026d1228b1e
Contents?: true
Size: 502 Bytes
Versions: 4
Compression:
Stored size: 502 Bytes
Contents
#!/usr/bin/env rspec require 'spec_helper' require 'puppet/network/client' describe Puppet::Network::Client do %w{ca file report runner status}.each do |name| it "should have a #{name} client" do Puppet::Network::Client.client(name).should be_instance_of(Class) end [:name, :handler, :drivername].each do |data| it "should have a #{data} value for the #{name} client" do Puppet::Network::Client.client(name).send(data).should_not be_nil end end end end
Version data entries
4 entries across 4 versions & 1 rubygems