From 9472eef292f7db0d40b2d8151b2eec7c71b606d5 Mon Sep 17 00:00:00 2001 From: Luke Kanies Date: Tue, 20 Nov 2007 14:01:51 -0600 Subject: Removing the bootproto and broadcast attributes from the redhat interface provider, since they are not needed --- spec/unit/ral/provider/interface/redhat.rb | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/spec/unit/ral/provider/interface/redhat.rb b/spec/unit/ral/provider/interface/redhat.rb index db56eeea8..420cb10ef 100755 --- a/spec/unit/ral/provider/interface/redhat.rb +++ b/spec/unit/ral/provider/interface/redhat.rb @@ -54,24 +54,6 @@ describe provider_class, " when parsing" do end end -describe provider_class do - before { @provider = Puppet::Type::Interface::ProviderRedhat.new } - it "should have a bootproto attribute" do - @provider.bootproto = "whatever" - @provider.bootproto.should == "whatever" - end - - it "should have a netmask attribute" do - @provider.netmask = "whatever" - @provider.netmask.should == "whatever" - end - - it "should have a broadcast attribute" do - @provider.broadcast = "whatever" - @provider.broadcast.should == "whatever" - end -end - describe provider_class, " when setting the device to a value containing ':'" do before do @provider = Puppet::Type::Interface::ProviderRedhat.new -- cgit