Sha256: 7a11d64f2776536ac416675a26b4da423a2c6ee83ad5f558d9b8653f09118cda
Contents?: true
Size: 1.29 KB
Versions: 12
Compression:
Stored size: 1.29 KB
Contents
# frozen_string_literal: true require 'rails_helper' describe DHS::Record do context '#persisted?' do let(:datastore) { 'http://depay.fi/v2' } before do DHC.config.placeholder('datastore', datastore) class Feedback < DHS::Record endpoint '{+datastore}/content-ads/{campaign_id}/feedbacks' end end context 'for new record' do context 'with a nil href' do subject { Feedback.new } it 'is false' do expect(subject.persisted?).to be(false) end end context 'with an empty href' do subject { Feedback.new(href: '') } it 'is false' do expect(subject.persisted?).to be(false) end end end context 'for saved record' do let(:campaign_id) { 'aaa' } let(:parameters) { { recommended: true } } subject { Feedback.new(parameters.merge(campaign_id: campaign_id)) } before do stub_request(:post, "#{datastore}/content-ads/#{campaign_id}/feedbacks") .with(body: parameters.to_json) .to_return(status: 200, body: parameters.merge(href: "#{datastore}/content-ads/#{campaign_id}/feedbacks/123456789").to_json) end it 'is true' do subject.save expect(subject.persisted?).to be(true) end end end end
Version data entries
12 entries across 12 versions & 1 rubygems