diff --git a/spec/spec_helper/load_path_spec.rb b/spec/spec_helper/load_path_spec.rb index 31fc1fed9..21d4398ea 100644 --- a/spec/spec_helper/load_path_spec.rb +++ b/spec/spec_helper/load_path_spec.rb @@ -18,15 +18,19 @@ RSpec.describe $LOAD_PATH do it('should contain SPEC_DIR') do expect($LOAD_PATH).to include(SPEC_DIR) end + it('should contain LIB_DIR') do expect($LOAD_PATH).to include(LIB_DIR) end + it('should contain GENERATED_DIR') do expect($LOAD_PATH).to include(GENERATED_DIR) end + it('should contain THIRD_PARTY_DIR') do expect($LOAD_PATH).to include(THIRD_PARTY_DIR) end + it('should already have unique path') do expect($LOAD_PATH).to match_array($LOAD_PATH.uniq!) end