Sha256: d6d43d9eede376b9a9e6668b111575594bdbefd7995ba4f7734fbdecf2f127ae
Contents?: true
Size: 1.24 KB
Versions: 11
Compression:
Stored size: 1.24 KB
Contents
require 'rails_helper' describe LHS::Record do context 'includes warning' do before(:each) do class Customer < LHS::Record endpoint 'http://datastore/customers/:id' end end let!(:customer_request) do stub_request(:get, 'http://datastore/customers/1') .to_return( body: { contracts: { href: 'http://datastore/customers/1/contracts' } }.to_json ) end let!(:contracts_request) do stub_request(:get, "http://datastore/customers/1/contracts") .to_return( body: { items: 10.times.map do { products: { href: 'http://datastore/products' } } end, limit: 10, offset: 0, total: 33 }.to_json ) end it 'warns if linked data was simply included but is paginated' do expect(lambda { Customer.includes(:contracts).find(1) }).to output( "[WARNING] You included `http://datastore/customers/1/contracts`, but this endpoint is paginated. You might want to use `includes_all` instead of `includes` (https://github.com/local-ch/lhs#includes_all-for-paginated-endpoints).\n" ).to_stderr end end end
Version data entries
11 entries across 11 versions & 1 rubygems