Sha256: 340e892b220cffac059350f9cc6f4bce299fa0ae59a89ae5cb22af4076568cdc

Contents?: true

Size: 1.29 KB

Versions: 3

Compression:

Stored size: 1.29 KB

Contents

require 'spec_helper'

describe APIMatchers::HTTPStatusCode::BeOk do
  describe "should be_ok" do
    it "should passes if the actual is equal to 200" do
      200.should be_ok
    end

    it "should fails if the actual is not equal to 200" do
      expect { 201.should be_ok }.to fail_with(%Q{expected that '201' to be ok with the status '200'.})
    end
  end

  describe "should_not be_ok_request" do
    it "should passes if the actual is not equal to 200" do
      201.should_not be_ok
    end

    it "should fail if the actual is equal to 200" do
      expect { 200.should_not be_ok }.to fail_with(%Q{expected that '200' to NOT be ok with the status '200'.})
    end
  end

  describe "with change configuration" do
    before do
      APIMatchers.setup { |config| config.http_status_method = :http_status }
    end

    after do
      APIMatchers.setup { |config| config.http_status_method = nil }
    end

    it "should pass if the actual.http_status is equal to 200" do
      response = OpenStruct.new(:http_status => 200)
      response.should be_ok
    end

    it "should fail if the actual.http_status is not equal to 200" do
      response = OpenStruct.new(:http_status => 500)
      expect { response.should be_ok }.to fail_with(%Q{expected that '500' to be ok with the status '200'.})
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
api_matchers-0.4.0 spec/api_matchers/http_status_code/be_ok_spec.rb
api_matchers-0.3.0 spec/api_matchers/http_status_code/be_ok_spec.rb
api_matchers-0.2.0 spec/api_matchers/http_status_code/be_ok_spec.rb