anonymous_active_record 1.0.7 → 1.0.9

Sign up to get free protection for your applications and to get access to all the features.
data/spec/db/database.yml DELETED
@@ -1,4 +0,0 @@
1
- test:
2
- adapter: sqlite3
3
- encoding: utf8
4
- database: ':memory:'
data/spec/spec_helper.rb DELETED
@@ -1,22 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'byebug' if RUBY_ENGINE == 'ruby'
4
-
5
- require 'rspec/block_is_expected'
6
-
7
- ruby_version = Gem::Version.new(RUBY_VERSION)
8
- require 'simplecov' if ruby_version >= Gem::Version.new('2.7') && RUBY_ENGINE == 'ruby'
9
-
10
- require 'anonymous_active_record'
11
-
12
- RSpec.configure do |config|
13
- # Enable flags like --only-failures and --next-failure
14
- config.example_status_persistence_file_path = '.rspec_status'
15
-
16
- # Disable RSpec exposing methods globally on `Module` and `main`
17
- config.disable_monkey_patching!
18
-
19
- config.expect_with :rspec do |c|
20
- c.syntax = :expect
21
- end
22
- end