spec/invoker/invoker_spec.rb in invoker-1.2.0.pre2 vs spec/invoker/invoker_spec.rb in invoker-1.2.0
- old
+ new
@@ -2,29 +2,29 @@
describe "Invoker" do
describe "#darwin?" do
it "should return true on osx" do
Invoker.expects(:ruby_platform).returns("x86_64-darwin12.4.0")
- expect(Invoker.darwin?).to be_true
+ expect(Invoker.darwin?).to be_truthy
end
it "should return false on linux" do
Invoker.expects(:ruby_platform).returns("i686-linux")
- expect(Invoker.darwin?).to be_false
+ expect(Invoker.darwin?).to be_falsey
end
end
describe "#can_run_balancer?" do
it "should return false if setup command was not run" do
- expect(Invoker.can_run_balancer?).to be_false
+ expect(Invoker.can_run_balancer?).to be_falsey
end
it "should return true if setup was run properly" do
File.open(Invoker::Power::Config.config_file, "w") {|fl|
fl.write("hello")
}
- expect(Invoker.can_run_balancer?).to be_true
+ expect(Invoker.can_run_balancer?).to be_truthy
end
it "should not print warning if setup is not run when flag is false" do
Invoker::Logger.expects(:puts).never()
Invoker.can_run_balancer?(false)
@@ -39,11 +39,11 @@
end
context "when the old config file does not exist" do
it "creates the new config directory" do
Invoker.setup_config_location
- expect(Dir.exist?(@config_location)).to be_true
+ expect(Dir.exist?(@config_location)).to be_truthy
end
end
context "when the old config file exists" do
before do
@@ -52,12 +52,12 @@
end
end
it "moves the file to the new directory" do
Invoker.setup_config_location
- expect(Dir.exist?(@config_location)).to be_true
+ expect(Dir.exist?(@config_location)).to be_truthy
new_config_file = File.join(@config_location, 'config')
- expect(File.exist?(new_config_file)).to be_true
+ expect(File.exist?(new_config_file)).to be_truthy
expect(File.read(new_config_file)).to match('invoker config')
end
end
end