blob: 9c83d6f061ba40961be08d1f1dfb4ecb7a1087e8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'abstract_unit'
class LoadPathsTest < Test::Unit::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
}
# CI has a bunch of duplicate load paths
# assert_equal [], load_paths_count.select { |k, v| v > 1 }, $LOAD_PATH.inspect
end
end
|