Merge pull request #6 from y-yagi/use_file_exist

Use `File.exist?` instead of `File.exists?`
This commit is contained in:
Adam Gross 2018-02-01 10:40:06 -08:00 committed by GitHub
commit 50525e30d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,6 +62,6 @@ describe 'active record' do
# Clean up DB
after(:all) do
File.delete(@db_file) if File.exists?(@db_file)
File.delete(@db_file) if File.exist?(@db_file)
end
end