Sha256: 5e9d71ad762339944a29efc18957a8b7ce928e22fc93b5f156a9cb5bc35531bc
Contents?: true
Size: 710 Bytes
Versions: 5
Compression:
Stored size: 710 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" 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
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
has_enum-0.7.3 | spec/spec_helper.rb |
has_enum-0.7.2.1 | spec/spec_helper.rb |
has_enum-0.7.2 | spec/spec_helper.rb |
has_enum-0.7.1 | spec/spec_helper.rb |
has_enum-0.7.0 | spec/spec_helper.rb |