Leave $LOAD_PATH.uniq! for jruby

This commit is contained in:
Yosuke Kabuto 2016-01-05 15:18:56 +09:00
parent be71b0dbf2
commit a382d9be84
2 changed files with 2 additions and 4 deletions

View File

@ -19,6 +19,8 @@ GENERATED_DIR = File.expand_path(File.join(ROOT_DIR, 'generated'))
THIRD_PARTY_DIR = File.expand_path(File.join(ROOT_DIR, 'third_party'))
FIXTURES_DIR = File.expand_path(File.join(SPEC_DIR, 'fixtures'))
$LOAD_PATH.uniq!
if defined?(JRUBY_VERSION)
puts 'Skipping coverage on JRuby'
else

View File

@ -30,8 +30,4 @@ RSpec.describe $LOAD_PATH do
it('should contain THIRD_PARTY_DIR') do
expect($LOAD_PATH).to include(THIRD_PARTY_DIR)
end
it('should already have unique paths') do
expect($LOAD_PATH).to match_array($LOAD_PATH.uniq!)
end
end