spec/generators/gem_template_spec.rb in dslable-0.0.5 vs spec/generators/gem_template_spec.rb in dslable-0.0.6
- old
+ new
@@ -27,25 +27,25 @@
# -- when --
gem_template.generate
# -- then --
- actual = Dir.exists?("../#{c[:gem_name]}")
+ actual = Dir.exist?("../#{c[:gem_name]}")
expect(actual).to be_true
ensure
case_after c
end
end
def case_before(c)
- Dir.mkdir(OUTPUT_TMP_DIR) unless Dir.exists? OUTPUT_TMP_DIR
+ Dir.mkdir(OUTPUT_TMP_DIR) unless Dir.exist? OUTPUT_TMP_DIR
Dir.chdir(OUTPUT_TMP_DIR)
end
def case_after(c)
Dir.chdir('../../')
- FileUtils.rm_rf(OUTPUT_TMP_DIR) if Dir.exists? OUTPUT_TMP_DIR
+ FileUtils.rm_rf(OUTPUT_TMP_DIR) if Dir.exist? OUTPUT_TMP_DIR
end
end
end
end