diff options
author | Andrew Ferk <andrewferk@gmail.com> | 2010-09-18 09:40:14 -0500 |
---|---|---|
committer | Andrew Ferk <andrewferk@gmail.com> | 2010-09-18 09:40:14 -0500 |
commit | 97350eea03339fd43dd67565881cc70c16c04d79 (patch) | |
tree | d336ee546adce57b6f3bce6d50e335d51d7aa4cb /railties | |
parent | 8a045e3c820afc04f1b37ec59921abea9828d1eb (diff) | |
download | rails-97350eea03339fd43dd67565881cc70c16c04d79.tar.gz rails-97350eea03339fd43dd67565881cc70c16c04d79.tar.bz2 rails-97350eea03339fd43dd67565881cc70c16c04d79.zip |
Updated test_helper.rb to require the init.rb file from the correct folder
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/source/plugins.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/plugins.textile b/railties/guides/source/plugins.textile index 2a62f39814..585033d317 100644 --- a/railties/guides/source/plugins.textile +++ b/railties/guides/source/plugins.textile @@ -207,7 +207,7 @@ def load_schema ActiveRecord::Base.establish_connection(config[db_adapter]) load(File.dirname(__FILE__) + "/schema.rb") - require File.dirname(__FILE__) + '/../rails/init' + require File.dirname(__FILE__) + '/../init' end </ruby> |