Sha256: ab9d81d72ffd61abddaaef4ac6ab94f7eca6afbff98397b1fad8b92e5563d082

Contents?: true

Size: 834 Bytes

Versions: 4

Compression:

Stored size: 834 Bytes

Contents

require File.expand_path(File.dirname(__FILE__) + '/spec_helper')

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.6.0 spec/chassis_config_spec.rb
rubyipmi-0.5.1 spec/chassis_config_spec.rb
rubyipmi-0.5.0 spec/chassis_config_spec.rb
rubyipmi-0.4.0 spec/chassis_config_spec.rb