Simplify load and require tests

- These tests don't use autoloading so there's no need to add anything to autoload_paths
This commit is contained in:
Sam Umbach 2011-12-03 13:10:58 -05:00
parent 2a9f063082
commit cfc467f73e

@ -264,7 +264,7 @@ def test_require_returns_true_when_file_not_yet_required
original_features = $".dup
$:.push(path)
with_loading('autoloading_fixtures/load_path') do
with_loading do
assert_equal true, require('loaded_constant')
end
ensure
@ -279,7 +279,7 @@ def test_require_returns_true_when_file_not_yet_required_even_when_no_new_consta
original_features = $".dup
$:.push(path)
with_loading('autoloading_fixtures/load_path') do
with_loading do
Object.module_eval "module LoadedConstant; end"
assert_equal true, require('loaded_constant')
end
@ -295,7 +295,7 @@ def test_require_returns_false_when_file_already_required
original_features = $".dup
$:.push(path)
with_loading('autoloading_fixtures/load_path') do
with_loading do
require 'loaded_constant'
assert_equal false, require('loaded_constant')
end
@ -319,7 +319,7 @@ def test_load_returns_true_when_file_found
original_features = $".dup
$:.push(path)
with_loading('autoloading_fixtures/load_path') do
with_loading do
assert_equal true, load('loaded_constant.rb')
assert_equal true, load('loaded_constant.rb')
end