summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2007-11-20 14:01:51 -0600
committerLuke Kanies <luke@madstop.com>2007-11-20 14:01:51 -0600
commit9472eef292f7db0d40b2d8151b2eec7c71b606d5 (patch)
tree0183896467c713432f13574547a064bad01df523
parenta7a46af16c2953ab88c14c7cc382d941faa473bf (diff)
downloadpuppet-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-xspec/unit/ral/provider/interface/redhat.rb18
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