Sha256: 54f259b7cba276600b8afbca6de3e15a5570dc8bc9a1acde2b92f8c664c469de
Contents?: true
Size: 755 Bytes
Versions: 8
Compression:
Stored size: 755 Bytes
Contents
# ============================================================================= # Include the files required to test Engines. # Load the default rails test helper - this will load the environment. require File.dirname(__FILE__) + '/../../../../test/test_helper' plugin_path = File::dirname(__FILE__) + '/..' schema_file = plugin_path + "/test/db/schema.rb" load(schema_file) if File.exist?(schema_file) # set up the fixtures location to use your engine's fixtures fixture_path = File.dirname(__FILE__) + "/fixtures/" ActiveSupport::TestCase.fixture_path = fixture_path $LOAD_PATH.unshift(ActiveSupport::TestCase.fixture_path) $LOAD_PATH.unshift(File.dirname(__FILE__)) # =============================================================================
Version data entries
8 entries across 8 versions & 4 rubygems