Sha256: 1f223690b618034f6e09ded64b65b41e561e1f5b1bdd4306f795f2af52238697

Contents?: true

Size: 446 Bytes

Versions: 19

Compression:

Stored size: 446 Bytes

Contents

require 'rails_helper'

describe LHS::Record do
  before 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

19 entries across 19 versions & 1 rubygems

Version Path
lhs-16.1.5 spec/record/to_hash_spec.rb
lhs-16.1.4 spec/record/to_hash_spec.rb
lhs-16.1.3 spec/record/to_hash_spec.rb
lhs-16.1.2 spec/record/to_hash_spec.rb
lhs-16.1.1 spec/record/to_hash_spec.rb
lhs-16.1.0 spec/record/to_hash_spec.rb
lhs-16.0.1 spec/record/to_hash_spec.rb
lhs-16.0.0 spec/record/to_hash_spec.rb
lhs-15.7.0 spec/record/to_hash_spec.rb
lhs-15.6.1 spec/record/to_hash_spec.rb
lhs-15.6.0 spec/record/to_hash_spec.rb
lhs-15.5.1 spec/record/to_hash_spec.rb
lhs-15.5.0 spec/record/to_hash_spec.rb
lhs-15.4.1 spec/record/to_hash_spec.rb
lhs-15.4.0 spec/record/to_hash_spec.rb
lhs-15.4.0.pre.hasone.1 spec/record/to_hash_spec.rb
lhs-15.3.3 spec/record/to_hash_spec.rb
lhs-15.3.3.pre.fixoptions.1 spec/record/to_hash_spec.rb
lhs-15.3.2 spec/record/to_hash_spec.rb