rspec-all_records_validator 0.0.7 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d16ea3c38340ae368b34b2321cf50870e4e100f2318e88cdf90a1c89e6ba4da5
4
- data.tar.gz: 1cc759676965a038d125943d74a126259d042e87eddd839ccbdbc14890712fef
3
+ metadata.gz: 0da551a4d19bd91c56db0df055e0ccce29a7469720af06915275d7f93cdf072c
4
+ data.tar.gz: 471cb24243e463610d6187ba4063b4a75b823a916a2bf132f78191b4912cf2cf
5
5
  SHA512:
6
- metadata.gz: 7f3375093bef4b4c81fa17061088024c5d0136f68a2ebd16467d815778b0b74ca58ea88684413efb40abc16a08575e33d4d95df2adcf7c3169da74cbb02ab0d7
7
- data.tar.gz: cc2a0733af9a01db933afb5e1caba1bc6bd494c0556fc4add197ce75db44660b7070650ee233382e3309c74e6db48db123a150344eee3873c40a7dd805cbf8d4
6
+ metadata.gz: 8c632ec00543ce159224cad00385185188557b228a1fa061ecd8dccbbac6ab4d28dbf23a85b894a4bc51be4cc0c80ea1998e2de0bae25f1b2d70b413c2bd18f6
7
+ data.tar.gz: 455bfe9df39819ad1f03083b76e4333d7ea012001750579adedf79828fc6c26607cbb2f3c1db0903bb49023b58a546979b481a5042d290a9a1a88a8b6cc9764c
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rspec-all_records_validator (0.0.7)
4
+ rspec-all_records_validator (0.0.8)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # RSpec::AllRecordsValidator
2
2
 
3
- Check all ActiveRecord object validation after system spec.
3
+ Check all ActiveRecord object validation which has `has_many` association after system spec.
4
4
 
5
5
  This gem is designed for: [rspec-rails](https://github.com/rspec/rspec-rails)
6
6
 
@@ -59,3 +59,15 @@ RSpec.configure do |config|
59
59
  end
60
60
  end
61
61
  ```
62
+
63
+ ### Pro Tip
64
+
65
+ If you use fixture or master data, ignore them is good for speed.
66
+
67
+ ```ruby
68
+ RSpec::AllRecordsValidator.validate!(ignored_models: [MasterDataModel])
69
+ ```
70
+
71
+ ## Contributing
72
+
73
+ Send me your pull requests.
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RSpec
4
4
  module AllRecordsValidator
5
- VERSION = "0.0.7"
5
+ VERSION = "0.0.8"
6
6
  end
7
7
  end
@@ -5,7 +5,7 @@ require_relative "all_records_validator/version"
5
5
  module RSpec
6
6
  module AllRecordsValidator
7
7
  def self.validate!(ignored_models: [])
8
- target_classes = ApplicationRecord.subclasses.reject {|klass| klass.abstract_class? || ignored_models.include?(klass) }
8
+ target_classes = ApplicationRecord.subclasses.reject {|klass| klass.abstract_class? || ignored_models.include?(klass) || klass.reflect_on_all_associations(:has_many).blank? }
9
9
 
10
10
  target_classes.each do |klass|
11
11
  klass.all.each do |obj|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-all_records_validator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - colorbox
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-05-13 00:00:00.000000000 Z
11
+ date: 2022-05-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -96,7 +96,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
96
96
  - !ruby/object:Gem::Version
97
97
  version: '0'
98
98
  requirements: []
99
- rubygems_version: 3.3.1
99
+ rubygems_version: 3.2.33
100
100
  signing_key:
101
101
  specification_version: 4
102
102
  summary: validate all objects at end of system spec