Sha256: 64968085a982ad787af2dc37854f5cc9c7bbd947f73c098005781600af7222a5
Contents?: true
Size: 478 Bytes
Versions: 4
Compression:
Stored size: 478 Bytes
Contents
require 'rubygems' require 'active_support' require 'active_support/test_case' # Create some test db stuff.. require 'activerecord' ActiveRecord::Base.establish_connection(:adapter => "sqlite3", :dbfile => ":memory:") ActiveRecord::Base.configurations = true ActiveRecord::Schema.verbose = false ActiveRecord::Schema.define(:version => 1) do create_table :books do |t| t.string :title t.string :description t.integer :production_year t.timestamps end end
Version data entries
4 entries across 4 versions & 2 rubygems
Version | Path |
---|---|
joost-sphinxsearchlogic-0.9.1 | test/test_helper.rb |
sphinxsearchlogic-0.9.3 | test/test_helper.rb |
sphinxsearchlogic-0.9.2 | test/test_helper.rb |
sphinxsearchlogic-0.9.1 | test/test_helper.rb |