blob: 979e25bdf3e564c7a94f241d76ec994b05a9e9bf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'abstract_unit'
class LoadPathsTest < ActiveSupport::TestCase
def test_uniq_load_paths
load_paths_count = $LOAD_PATH.inject({}) { |paths, path|
expanded_path = File.expand_path(path)
paths[expanded_path] ||= 0
paths[expanded_path] += 1
paths
}
load_paths_count[File.expand_path('../../lib', __FILE__)] -= 1
filtered = load_paths_count.select { |k, v| v > 1 }
assert filtered.empty?, filtered.inspect
end
end
|