Sha256: cc3ce41a4b7b816cc98e3607a867ad085040b1526b840e8fff1260739213210f

Contents?: true

Size: 584 Bytes

Versions: 3

Compression:

Stored size: 584 Bytes

Contents

module APIMatchers
  module HTTPStatusCode
    class CreateResource < Base
      def expected_status_code
        201
      end

      def failure_message
        %Q{expected that '#{@http_status_code}' to be Created Resource with the status '201'.}
      end

      def failure_message_when_negated
        %Q{expected that '#{@http_status_code}' to NOT be Created Resource.}
      end

      # RSpec 2 compatibility:
      alias_method :failure_message_for_should, :failure_message
      alias_method :failure_message_for_should_not, :failure_message_when_negated
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
api_matchers-0.6.0 lib/api_matchers/http_status_code/create_resource.rb
api_matchers-0.5.1 lib/api_matchers/http_status_code/create_resource.rb
api_matchers-0.5.0 lib/api_matchers/http_status_code/create_resource.rb