Leave $LOAD_PATH.uniq! for jruby
This commit is contained in:
parent
be71b0dbf2
commit
a382d9be84
|
@ -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'))
|
THIRD_PARTY_DIR = File.expand_path(File.join(ROOT_DIR, 'third_party'))
|
||||||
FIXTURES_DIR = File.expand_path(File.join(SPEC_DIR, 'fixtures'))
|
FIXTURES_DIR = File.expand_path(File.join(SPEC_DIR, 'fixtures'))
|
||||||
|
|
||||||
|
$LOAD_PATH.uniq!
|
||||||
|
|
||||||
if defined?(JRUBY_VERSION)
|
if defined?(JRUBY_VERSION)
|
||||||
puts 'Skipping coverage on JRuby'
|
puts 'Skipping coverage on JRuby'
|
||||||
else
|
else
|
||||||
|
|
|
@ -30,8 +30,4 @@ RSpec.describe $LOAD_PATH do
|
||||||
it('should contain THIRD_PARTY_DIR') do
|
it('should contain THIRD_PARTY_DIR') do
|
||||||
expect($LOAD_PATH).to include(THIRD_PARTY_DIR)
|
expect($LOAD_PATH).to include(THIRD_PARTY_DIR)
|
||||||
end
|
end
|
||||||
|
|
||||||
it('should already have unique paths') do
|
|
||||||
expect($LOAD_PATH).to match_array($LOAD_PATH.uniq!)
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue