Sha256: 4d27fad3c772fd41209497e02e0a9aba68dfa22b9de61cc5b233e5931ae01534

Contents?: true

Size: 302 Bytes

Versions: 2

Compression:

Stored size: 302 Bytes

Contents

require 'spec_helper'
require 'orders/shared_examples.rb'

describe Orders::IndexedList do
  subject { Orders::IndexedList.new }
  let(:item_index) { @item.object_id }

  before(:each) do
    @item = Object.new
    @item1 = Object.new
    @item2 = Object.new
  end

  it_behaves_like 'index_list'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
orders-0.0.4 spec/orders/indexed_list_spec.rb
orders-0.0.3 spec/orders/indexed_list_spec.rb