spec/support/shared/checker.rb in status_cat-0.1.0 vs spec/support/shared/checker.rb in status_cat-0.1.1
- old
+ new
@@ -1,25 +1,23 @@
shared_examples_for 'a status checker' do
it 'inherits from StatusCat::Checker' do
- checker.should be_a_kind_of( StatusCat::Checkers::Base )
+ expect( checker ).to be_a_kind_of( StatusCat::Checkers::Base )
end
describe 'attributes' do
it 'has a name reader' do
expected = checker.class.to_s.split( '::' ).last.underscore.to_sym
- checker.name.should eql( expected )
+ expect( checker.name ).to eql( expected )
end
it 'has a value reader' do
- checker.value.should eql( checker.value )
+ expect( checker.value ).to eql( checker.value )
end
it 'has a status reader' do
- checker.status.should eql( checker.status )
+ expect( checker.status ).to eql( checker.status )
end
-
end
-
end