diff options
author | James McKinney <james@slashpoundbang.com> | 2015-05-21 14:01:18 +0200 |
---|---|---|
committer | James McKinney <james@slashpoundbang.com> | 2015-05-21 14:01:18 +0200 |
commit | 0bd8370c328d678f8f2b7bb4e48c6dbaf0974451 (patch) | |
tree | 36139c15559a7946a017869657e765fbe0b4c841 /spec/lib/health_checks/health_checkable_spec.rb | |
parent | dd289908964c8d60e33ce71724dc9e36c3beb765 (diff) |
Simplify HealthCheckable API
Diffstat (limited to 'spec/lib/health_checks/health_checkable_spec.rb')
-rw-r--r-- | spec/lib/health_checks/health_checkable_spec.rb | 22 |
1 files changed, 4 insertions, 18 deletions
diff --git a/spec/lib/health_checks/health_checkable_spec.rb b/spec/lib/health_checks/health_checkable_spec.rb index 301585bbd..59d76c337 100644 --- a/spec/lib/health_checks/health_checkable_spec.rb +++ b/spec/lib/health_checks/health_checkable_spec.rb @@ -32,24 +32,10 @@ describe HealthChecks::HealthCheckable do end - describe :check do - - it 'is intended to be overridden by the includer' do - expect{ @subject.check }.to raise_error(NotImplementedError) - end - - end - describe :ok? do - it 'returns true if the check was successful' do - @subject.stub(:check => true) - expect(@subject.ok?).to be_true - end - - it 'returns false if the check failed' do - @subject.stub(:check => false) - expect(@subject.ok?).to be_false + it 'is intended to be overridden by the includer' do + expect{ @subject.ok? }.to raise_error(NotImplementedError) end end @@ -93,7 +79,7 @@ describe HealthChecks::HealthCheckable do context 'if the check succeeds' do before(:each) do - @subject.stub(:check => true) + @subject.stub(:ok? => true) end it 'returns the default success message' do @@ -110,7 +96,7 @@ describe HealthChecks::HealthCheckable do context 'if the check fails' do before(:each) do - @subject.stub(:check => false) + @subject.stub(:ok? => false) end it 'returns the default failure message' do |