Sha256: c0c9ba44e38b092e052c3727ae399ec823399739773d06987b0dc2cc969c00d3
Contents?: true
Size: 731 Bytes
Versions: 4
Compression:
Stored size: 731 Bytes
Contents
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) $LOAD_PATH.unshift(File.dirname(__FILE__)) require 'rspec' require 'rails/all' require 'has_enum' ActiveRecord::Base.establish_connection( :adapter => 'sqlite3', :database => 'spec/rspec.db' ) ActiveRecord::Schema.define(:version => 0) do create_table "test_models", :force => true do |t| t.string "category" t.string "color" t.string "size" t.string "status" t.string "state" t.string "speed" end create_table "schema_info", :id => false, :force => true do |t| t.integer "version" end end I18n.load_path << 'spec/ru.yml' I18n.default_locale = :ru require File.dirname(__FILE__) + "/test_model" unless defined?(Model)
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
has_enum-0.8.2 | spec/spec_helper.rb |
has_enum-0.8.1.1 | spec/spec_helper.rb |
has_enum-0.8.1 | spec/spec_helper.rb |
has_enum-0.8.0 | spec/spec_helper.rb |