diff options
author | Luke Kanies <luke@madstop.com> | 2007-11-20 14:01:51 -0600 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2007-11-20 14:01:51 -0600 |
commit | 9472eef292f7db0d40b2d8151b2eec7c71b606d5 (patch) | |
tree | 0183896467c713432f13574547a064bad01df523 | |
parent | a7a46af16c2953ab88c14c7cc382d941faa473bf (diff) | |
download | puppet-9472eef292f7db0d40b2d8151b2eec7c71b606d5.tar.gz puppet-9472eef292f7db0d40b2d8151b2eec7c71b606d5.tar.xz puppet-9472eef292f7db0d40b2d8151b2eec7c71b606d5.zip |
Removing the bootproto and broadcast attributes from the redhat interface provider, since they are not needed
-rwxr-xr-x | spec/unit/ral/provider/interface/redhat.rb | 18 |
1 files changed, 0 insertions, 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 |