Sha256: 3ef1ccb3650a033fea94c17c7995fdacbbc76af7c3afd488f3356ceed2db39f3
Contents?: true
Size: 434 Bytes
Versions: 2
Compression:
Stored size: 434 Bytes
Contents
require_relative 'spec_helper' require_relative 'support/paging_shared_example' require 'active_record' ActiveRecord::Base.establish_connection adapter: 'sqlite3', database: ':memory:' ActiveRecord::Schema.define do self.verbose = false create_table :products, force: true do |t| t.string :name t.string :category_name t.integer :price t.timestamps null: true end end class Product < ActiveRecord::Base end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
search_object-1.1.1 | spec/spec_helper_active_record.rb |
search_object-1.1.0 | spec/spec_helper_active_record.rb |