mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
a75f6cfb1b
Fix rake method definition leaking onto Object
48 lines
1.1 KiB
Ruby
48 lines
1.1 KiB
Ruby
require "isolation/abstract_unit"
|
|
require "active_support/core_ext/string/strip"
|
|
|
|
module ApplicationTests
|
|
module RakeTests
|
|
class FrameworkTest < ActiveSupport::TestCase
|
|
include ActiveSupport::Testing::Isolation
|
|
|
|
def setup
|
|
build_app
|
|
boot_rails
|
|
FileUtils.rm_rf("#{app_path}/config/environments")
|
|
end
|
|
|
|
def teardown
|
|
teardown_app
|
|
end
|
|
|
|
def load_tasks
|
|
require 'rake'
|
|
require 'rdoc/task'
|
|
require 'rake/testtask'
|
|
|
|
Rails.application.load_tasks
|
|
end
|
|
|
|
test 'requiring the rake task should not define method .app_generator on Object' do
|
|
require "#{app_path}/config/environment"
|
|
|
|
load_tasks
|
|
|
|
assert_raise NameError do
|
|
Object.method(:app_generator)
|
|
end
|
|
end
|
|
|
|
test 'requiring the rake task should not define method .invoke_from_app_generator on Object' do
|
|
require "#{app_path}/config/environment"
|
|
|
|
load_tasks
|
|
|
|
assert_raise NameError do
|
|
Object.method(:invoke_from_app_generator)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|