Sha256: 32771594aa550ee85310ffd95f6071f2b9956087bef4fdc5eb8a58bd6a29ea78

Contents?: true

Size: 554 Bytes

Versions: 76

Compression:

Stored size: 554 Bytes

Contents

# frozen_string_literal: true

require 'rails_helper'

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

Version data entries

76 entries across 76 versions & 1 rubygems

Version Path
lhs-26.2.0 spec/record/find_by_chains_spec.rb
lhs-26.1.0 spec/record/find_by_chains_spec.rb
lhs-26.0.1 spec/record/find_by_chains_spec.rb
lhs-26.0.0 spec/record/find_by_chains_spec.rb
lhs-25.2.0 spec/record/find_by_chains_spec.rb
lhs-25.1.0 spec/record/find_by_chains_spec.rb
lhs-25.0.4 spec/record/find_by_chains_spec.rb
lhs-25.0.3 spec/record/find_by_chains_spec.rb
lhs-25.0.2 spec/record/find_by_chains_spec.rb
lhs-25.0.1 spec/record/find_by_chains_spec.rb
lhs-25.0.0 spec/record/find_by_chains_spec.rb
lhs-24.1.2 spec/record/find_by_chains_spec.rb
lhs-24.1.1 spec/record/find_by_chains_spec.rb
lhs-24.1.0 spec/record/find_by_chains_spec.rb
lhs-24.1.0.pre.2 spec/record/find_by_chains_spec.rb
lhs-24.1.0.pre.1 spec/record/find_by_chains_spec.rb
lhs-24.0.0 spec/record/find_by_chains_spec.rb
lhs-23.0.2 spec/record/find_by_chains_spec.rb
lhs-23.0.1 spec/record/find_by_chains_spec.rb
lhs-23.0.0 spec/record/find_by_chains_spec.rb