Sha256: 2de4ebc680403e5a1876611b34ad66e554325d987baee504615beb3c8d138995
Contents?: true
Size: 843 Bytes
Versions: 4
Compression:
Stored size: 843 Bytes
Contents
# Configure Rails Envinronment ENV["RAILS_ENV"] = "test" require File.expand_path("../dummy/config/environment.rb", __FILE__) require "rails/test_help" require 'shoulda' require 'ffaker' Rails.backtrace_cleaner.remove_silencers! # Run any available migration ActiveRecord::Migrator.migrate File.expand_path("../dummy/db/migrate/", __FILE__) # Load support files Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f } # global setup block resetting Thread.current class ActiveSupport::TestCase teardown do Thread.current[:paper_trail] = nil end end # # Helpers # def change_schema ActiveRecord::Migration.verbose = false ActiveRecord::Schema.define do remove_column :widgets, :sacrificial_column add_column :versions, :custom_created_at, :datetime end ActiveRecord::Migration.verbose = true end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
paper_trail-3.0.1 | test/test_helper.rb |
paper_trail-3.0.0 | test/test_helper.rb |
paper_trail-3.0.0.rc2 | test/test_helper.rb |
paper_trail-3.0.0.rc1 | test/test_helper.rb |