Sha256: fda6fcda901fd1906c43984d7cc170618973d9acd79b89716a4da7f65c9b6852
Contents?: true
Size: 653 Bytes
Versions: 11
Compression:
Stored size: 653 Bytes
Contents
require 'spec_helper' module GoTransverseTractApi RSpec.describe Order::Organization do before(:each) { http_auth } let(:response) { {a: 'b', c: 'd'} } context ".add_address" do it "adds address for the customer" do eid = '48406' data = { city: 'fsfsfs', country: 'USA', line1: 'wefsvgg ggdgdgd', postal_code: '232433', purpose: 'Billing', region_or_state: 'CA' } allow(subject).to receive(:add_address).with(eid, data).and_return(response) expect(subject.add_address(eid, data)).to eq(response) end end end end
Version data entries
11 entries across 11 versions & 1 rubygems