Remove old test that check duplicated items in the load path

This test was added to protect the test suite from our mistakes but now
it is failing because bundler does add duplicated libs in the load path
by design (if the repository has more than one gem)
This commit is contained in:
Rafael Mendonça França 2016-07-13 01:52:47 -03:00
parent 0796d14211
commit fc50f1fd50
No known key found for this signature in database
GPG Key ID: FC23B6D0F1EEE948

@ -1,16 +0,0 @@
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
load_paths_count.select! { |k, v| v > 1 }
assert load_paths_count.empty?, load_paths_count.inspect
end
end