Sha256: 2a3f588061c0b7bfc37f3b094c27028ee74daa80f4efeae746d06dbe64be4f82
Contents?: true
Size: 767 Bytes
Versions: 4
Compression:
Stored size: 767 Bytes
Contents
describe "Chassis Config" do before :each do user = ENV["ipmiuser"] pass = ENV["ipmipass"] host = ENV["ipmihost"] provider = ENV["ipmiprovider"] @conn = Rubyipmi.connect(user, pass, host, provider) end it "test to set booting from PXE" do @conn.chassis.config.bootpxe.should == true end it "test to set booting from Disk" do @conn.chassis.config.bootdisk.should == true end it "test to set booting from Cdrom" do @conn.chassis.config.bootcdrom.should == true end it "test to set booting from bios" do @conn.chassis.config.bootbios.should == true end it "test to set boot persistent value" do end it "test to checkout the entire chassis config" do end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
rubyipmi-0.3.3 | spec/chassis_config_spec.rb |
rubyipmi-0.3.2 | spec/chassis_config_spec.rb |
rubyipmi-0.3.1 | spec/chassis_config_spec.rb |
rubyipmi-0.3.0 | spec/chassis_config_spec.rb |