2011-02-08 12:16:35 -05:00
|
|
|
# Configure Rails Envinronment
|
|
|
|
ENV["RAILS_ENV"] = "test"
|
2014-03-14 16:11:10 -04:00
|
|
|
ENV["DB"] ||= "sqlite"
|
2011-02-08 12:16:35 -05:00
|
|
|
require File.expand_path("../dummy/config/environment.rb", __FILE__)
|
|
|
|
require "rails/test_help"
|
|
|
|
require 'shoulda'
|
2013-01-22 18:13:58 -05:00
|
|
|
require 'ffaker'
|
2009-05-27 11:21:20 -04:00
|
|
|
|
2013-10-03 10:06:24 -04:00
|
|
|
Rails.backtrace_cleaner.remove_silencers!
|
|
|
|
|
2011-02-08 12:16:35 -05:00
|
|
|
# Run any available migration
|
|
|
|
ActiveRecord::Migrator.migrate File.expand_path("../dummy/db/migrate/", __FILE__)
|
2010-03-18 14:02:55 -04:00
|
|
|
|
2011-02-08 12:16:35 -05:00
|
|
|
# Load support files
|
|
|
|
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
|
|
|
|
2011-04-06 20:21:57 -04:00
|
|
|
# global setup block resetting Thread.current
|
|
|
|
class ActiveSupport::TestCase
|
|
|
|
teardown do
|
|
|
|
Thread.current[:paper_trail] = nil
|
|
|
|
end
|
|
|
|
end
|
2011-02-08 12:16:35 -05:00
|
|
|
|
|
|
|
#
|
|
|
|
# Helpers
|
|
|
|
#
|
2010-03-18 14:02:55 -04:00
|
|
|
|
2011-02-08 12:16:35 -05:00
|
|
|
def change_schema
|
|
|
|
ActiveRecord::Migration.verbose = false
|
|
|
|
ActiveRecord::Schema.define do
|
|
|
|
remove_column :widgets, :sacrificial_column
|
2012-03-12 07:12:27 -04:00
|
|
|
add_column :versions, :custom_created_at, :datetime
|
2010-03-19 14:53:49 -04:00
|
|
|
end
|
2011-02-08 12:16:35 -05:00
|
|
|
ActiveRecord::Migration.verbose = true
|
2010-03-19 14:53:49 -04:00
|
|
|
end
|
2014-03-14 23:52:35 -04:00
|
|
|
|
|
|
|
def restore_schema
|
|
|
|
ActiveRecord::Migration.verbose = false
|
|
|
|
ActiveRecord::Schema.define do
|
|
|
|
add_column :widgets, :sacrificial_column, :string
|
|
|
|
remove_column :versions, :custom_created_at
|
|
|
|
end
|
|
|
|
ActiveRecord::Migration.verbose = true
|
|
|
|
end
|