spec/cpu_spec.rb in libuv-0.11.5 vs spec/cpu_spec.rb in libuv-0.11.7
- old
+ new
@@ -3,8 +3,8 @@
describe ::Libuv do
it "Should return the number of CPU cores on the platform" do
count = Libuv.cpu_count
- (count != nil && count > 0).should == true
+ expect(count != nil && count > 0).to eq(true)
end
end