diff options
author | José Valim <jose.valim@gmail.com> | 2010-01-24 12:49:12 +0100 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2010-01-24 12:49:12 +0100 |
commit | dd05b6c543f48050f494214da7803da6f5655292 (patch) | |
tree | 189258330438a7604e0e7efee059be1ad6a37dbc /railties/test | |
parent | e548f96b1d5cb6529dd6fbc6544f03a3a840b48c (diff) | |
download | rails-dd05b6c543f48050f494214da7803da6f5655292.tar.gz rails-dd05b6c543f48050f494214da7803da6f5655292.tar.bz2 rails-dd05b6c543f48050f494214da7803da6f5655292.zip |
Add tests for plugin sanity check.
Diffstat (limited to 'railties/test')
-rw-r--r-- | railties/test/plugins/vendored_test.rb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/railties/test/plugins/vendored_test.rb b/railties/test/plugins/vendored_test.rb index 1fc8766def..86f3ecd1f7 100644 --- a/railties/test/plugins/vendored_test.rb +++ b/railties/test/plugins/vendored_test.rb @@ -247,6 +247,30 @@ YAML assert_equal 200, last_response.status assert_equal "Rendered from namespace", last_response.body end + + test "plugin cannot declare an engine for it" do + @plugin.write "lib/bukkits.rb", <<-RUBY + class Bukkits + class Engine < Rails::Engine + end + end + RUBY + + @plugin.write "init.rb", <<-RUBY + require "bukkits" + RUBY + + rescued = false + + begin + boot_rails + rescue Exception => e + rescued = true + assert_equal '"bukkits" is a Railtie/Engine and cannot be installed as plugin', e.message + end + + assert rescued, "Expected boot rails to fail" + end end class VendoredOrderingTest < Test::Unit::TestCase |