Sha256: d707c5a431bab7ce483b5e411e803649c5ad6b40a5c33ef3fcab589409d644ed

Contents?: true

Size: 590 Bytes

Versions: 13

Compression:

Stored size: 590 Bytes

Contents

# Configure Rails Envinronment
ENV['RAILS_ENV'] = 'test'

# # Test Coverage
# require 'simplecov'
# SimpleCov.start

require File.expand_path '../dummy30/config/environment.rb', __FILE__
require 'rails/test_help'

ActiveRecord::Base.logger = Logger.new File.dirname(__FILE__) + '/debug.log'
ActiveRecord::Migration.verbose = false

load File.dirname(__FILE__) + '/schema.rb'

require File.dirname(__FILE__) + '/../lib/generators/templates/model.rb'

require 'shoulda'
require 'shoulda_create'
require 'factory_girl'
ActiveSupport::TestCase.extend ShouldaCreate
FactoryGirl.find_definitions

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
acts_as_favoritor-2.0.0 test/test_helper.rb
acts_as_favoritor-1.5.0 test/test_helper.rb
acts_as_favoritor-1.4.0 test/test_helper.rb
acts_as_favoritor-1.3.2 test/test_helper.rb
sandboxy-1.1.1 test/test_helper.rb
sandboxy-1.1.0 test/test_helper.rb
sandboxy-1.0.0 test/test_helper.rb
acts_as_favoritor-1.2.2 test/test_helper.rb
acts_as_favoritor-1.2.1 test/test_helper.rb
acts_as_favoritor-1.2.0 test/test_helper.rb
acts_as_favoritor-1.1.3 test/test_helper.rb
acts_as_favoritor-1.1.2 test/test_helper.rb
acts_as_favoritor-1.1.0 test/test_helper.rb