aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/plugins
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-12-21 16:57:23 -0800
committerJeremy Kemper <jeremy@bitsweat.net>2009-12-21 17:03:21 -0800
commit2e571e8f99e5e2712c0bc2558df8d62996204b03 (patch)
treeb0402c4bba17982a7a368c8b3925ad4b024235cf /railties/test/plugins
parent76e732a7be690f09d1e5d6c97138a6eb7d263423 (diff)
downloadrails-2e571e8f99e5e2712c0bc2558df8d62996204b03.tar.gz
rails-2e571e8f99e5e2712c0bc2558df8d62996204b03.tar.bz2
rails-2e571e8f99e5e2712c0bc2558df8d62996204b03.zip
Blog -> Blog::Application. Leave the toplevel module up for grabs.
Diffstat (limited to 'railties/test/plugins')
-rw-r--r--railties/test/plugins/configuration_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/test/plugins/configuration_test.rb b/railties/test/plugins/configuration_test.rb
index edf8bb37f5..5786316d1d 100644
--- a/railties/test/plugins/configuration_test.rb
+++ b/railties/test/plugins/configuration_test.rb
@@ -21,7 +21,7 @@ module PluginsTest
test "plugin configurations are available in the application" do
class Foo < Rails::Plugin ; config.foo.greetings = "hello" ; end
require "#{app_path}/config/application"
- assert_equal "hello", AppTemplate.config.foo.greetings
+ assert_equal "hello", AppTemplate::Application.config.foo.greetings
end
test "plugin config merges are deep" do
@@ -33,4 +33,4 @@ module PluginsTest
assert_equal "bar", MyApp.config.foo.bar
end
end
-end \ No newline at end of file
+end