require 'rails_helper' describe LHS::Record do before(:each) do class Record < LHS::Record endpoint 'http://datastore/records/' end stub_request(:get, "http://datastore/records/?limit=1&name=Steve&color=blue") .to_return(body: [{ name: 'Steve', color: 'blue' }].to_json) end it 'allows chaining find_by' do Record.options(params: { color: 'blue' }).find_by(name: 'Steve') end it 'allows chaining find_by!' do Record.options(params: { color: 'blue' }).find_by!(name: 'Steve') end end