From 8581c72a44b5742bae74a8f7302906ff64dc133f Mon Sep 17 00:00:00 2001 From: Yosuke Kabuto Date: Sat, 2 Jan 2016 16:42:29 +0900 Subject: [PATCH] Add space between specs --- spec/spec_helper/load_path_spec.rb | 4 ++++ 1 file changed, 4 insertions(+) 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