Add space between specs

This commit is contained in:
Yosuke Kabuto 2016-01-02 16:42:29 +09:00
parent f6dc748cbd
commit 8581c72a44
1 changed files with 4 additions and 0 deletions

View File

@ -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