Sha256: 38d32de04ba618ab01052e95f6acf4abb0e743a5f86ed7e728dfe491c12aa3da
Contents?: true
Size: 828 Bytes
Versions: 19
Compression:
Stored size: 828 Bytes
Contents
require 'rails_helper' describe LHS::Record do let(:datastore) do 'http://datastore/v2' end let(:response) do { body: [{ name: 'Steve' }] } end before do LHC.config.placeholder('datastore', datastore) class Record < LHS::Record endpoint '{+datastore}/records/' end end context 'where values hash' do it 'provides the hash or where parameters that have been requested' do stub_request(:get, "http://datastore/v2/records/?available=true&color=blue").to_return(response) expect( Record.where(available: true).where(color: 'blue').where_values_hash ).to eq(available: true, color: 'blue') expect( Record.where(available: true, color: 'red').where(color: 'blue').where_values_hash ).to eq(available: true, color: 'blue') end end end
Version data entries
19 entries across 19 versions & 1 rubygems