Sha256: 57ea38b4136416414755548383152fe95525c5c6efdab4521000024bff35578c
Contents?: true
Size: 453 Bytes
Versions: 105
Compression:
Stored size: 453 Bytes
Contents
require 'rails_helper' describe LHS::Record do before(:each) do class Record < LHS::Record endpoint 'http://datastore/records' end end let(:item) { { name: 'Thomas' } } let(:body) { [item] } it 'converts itself to hash' do stub_request(:get, "http://datastore/records") .to_return(body: body.to_json) record = Record.where.first expect(record.to_h).to eq item expect(record.to_hash).to eq item end end
Version data entries
105 entries across 105 versions & 1 rubygems