Sha256: 25312a6d840410d11c27ad4c989551a8abe48cf056e8868e88dbdd7eed9b2008
Contents?: true
Size: 1.29 KB
Versions: 5
Compression:
Stored size: 1.29 KB
Contents
require 'spec_helper' describe Confrater::APIError do let(:message) { 'Foo' } let(:params) do { title: 'error_title', detail: 'error_detail', body: 'error_body', raw_body: 'error_raw_body', status_code: 'error_status_code' } end before do @confrere = Confrater::APIError.new(message, params) end it "adds the error params to the error message" do expected_message = "Foo " \ "@title=\"error_title\", " \ "@detail=\"error_detail\", " \ "@body=\"error_body\", " \ "@raw_body=\"error_raw_body\", " \ "@status_code=\"error_status_code\"" expect(@confrere.message).to eq(expected_message) end it 'sets the title attribute' do expect(@confrere.title).to eq(params[:title]) end it 'sets the detail attribute' do expect(@confrere.detail).to eq(params[:detail]) end it 'sets the body attribute' do expect(@confrere.body).to eq(params[:body]) end it 'sets the raw_body attribute' do expect(@confrere.raw_body).to eq(params[:raw_body]) end it 'sets the status_code attribute' do expect(@confrere.status_code).to eq(params[:status_code]) end end
Version data entries
5 entries across 5 versions & 1 rubygems