Sha256: 766106ffdd0310c52951b772ddf8a6fadf50d6e406481703108c01dee3a2f8d3

Contents?: true

Size: 886 Bytes

Versions: 8

Compression:

Stored size: 886 Bytes

Contents

require 'rspec'
require_relative '../lib/restful_resource'
require_relative 'fixtures'

RSpec.configure do |config|
  config.color = true
  config.formatter = :progress
end


def expect_get(url, response)
  expect(@mock_http).to receive(:get).with(url).and_return(response)
end

def expect_put(url, response, data: {})
  expect(@mock_http).to receive(:put).with(url, data: data).and_return(response)
end

def expect_post(url, response, data: {})
  expect(@mock_http).to receive(:post).with(url, data: data).and_return(response)
end

def expect_put_with_unprocessable_entity(url, response, data: {})
  rest_client_response = OpenStruct.new({body: response.body, headers: response.headers, code: response.status})
  exception = RestfulResource::HttpClient::UnprocessableEntity.new(rest_client_response)
  expect(@mock_http).to receive(:put).with(url, data: data).and_raise(exception)
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
restful_resource-0.8.21 spec/spec_helper.rb
restful_resource-0.8.20 spec/spec_helper.rb
restful_resource-0.8.19 spec/spec_helper.rb
restful_resource-0.8.18 spec/spec_helper.rb
restful_resource-0.8.17 spec/spec_helper.rb
restful_resource-0.8.16 spec/spec_helper.rb
restful_resource-0.8.15 spec/spec_helper.rb
restful_resource-0.8.14 spec/spec_helper.rb