Sha256: 5353a6216b18b4583e4fdd3b9f4210f6557d9f4f873315d8013afc3be771a84e
Contents?: true
Size: 960 Bytes
Versions: 7
Compression:
Stored size: 960 Bytes
Contents
require File.expand_path(File.dirname(__FILE__) + '/spec_helper') describe "NSICloudooo::Client::Configuration" do Configuration = NSICloudooo::Client::Configuration it "set and return user" do Configuration.user 'why' Configuration.user.should == 'why' end it "set and return password" do Configuration.password 'admin123' Configuration.password.should == 'admin123' end it "set and return host" do Configuration.host '192.168.0.100' Configuration.host.should == '192.168.0.100' end it "set and return port" do Configuration.port '8888' Configuration.port.should == '8888' end it "return a hash of attributes" do Configuration.instance_eval do user "why" password "chunky" host "localhost" port "8888" end Configuration.settings.should == {user: "why", password: "chunky", host: "localhost", port: "8888"} end end
Version data entries
7 entries across 7 versions & 1 rubygems