rspec-active_record 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dc22932934c76f5aa353ae21165ccccb5dbe12ae02b23384b4bf2be5c3fb2400
4
- data.tar.gz: ceba6e1dd8edd17ba0b732a458e2a71be87a916213b8a6500394d011e3322074
3
+ metadata.gz: 2a80d964b05c481f1983c91d5a441ae6a26381bd19cb2006710d94a09761dbef
4
+ data.tar.gz: 5a17586dcfbfaca18bfb02f94ce450aaf7de83f35ecd9aac5ba40d3f7faa0d5c
5
5
  SHA512:
6
- metadata.gz: 4895273f1779660e100f207e9497979f07eaf973ddc1133b138ac56d7b1339bc632387a7ac0a1aa8b8fea0903a644fb5d043f76e5e2eb23289ee916240e60085
7
- data.tar.gz: 6ee9a41affc0b83ad13cbb54a0c1da7ac0187c13a7ea0bb5104df6f9ed5e8511572f2bab8a9eb5e45a0960faad7d8e76e55e44274aaf3735feff702d990e9e8b
6
+ metadata.gz: 9089391ec0c25bdfd0506a680fc455303c88979225687b0a92afab956752739a116112f333a1fe58642b025417be83bbdc6827e01796186cd7962925c03a33bf
7
+ data.tar.gz: d8fa5e16d109c9d1c1dc6724c4269fd4b6fa1990cfe19390526a53c5ea7486a8d401e4ce5873a07b316ffb60f294450939c0e38b3c775e7c7098d9fe54ede023
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.2.0] - 2024-07-12
4
+
5
+ - Add support for negative matchers
6
+
3
7
  ## [0.1.0] - 2023-04-23
4
8
 
5
9
  - Initial release
data/README.md CHANGED
@@ -4,9 +4,19 @@ Implements helper methods & matchers when working with RSpec & ActiveRecord.
4
4
 
5
5
  ## Installation
6
6
 
7
- Install the gem and add to the application's Gemfile by executing:
7
+ Add it to Gemfile:
8
8
 
9
- $ bundle add rspec-active_record --group test
9
+ ```ruby
10
+ group :test do
11
+ gem "rspec-active_record", require: false
12
+ end
13
+ ```
14
+
15
+ And require it in your `rails_helper` or `spec_helper` after `rspec/rails`:
16
+
17
+ ```ruby
18
+ require "rspec/active_record"
19
+ ```
10
20
 
11
21
  If bundler is not being used to manage dependencies, install the gem by executing:
12
22
 
@@ -20,6 +30,7 @@ Check that block creates a record:
20
30
 
21
31
  ```ruby
22
32
  expect { User.create!(name: "RSpec User") }.to create_record(User)
33
+ expect { User.create!(name: "RSpec User") }.to not_create_record(Company)
23
34
  ```
24
35
 
25
36
  You can also make sure that attributes match, if it fails you'll get RSpec diff between created record and what you expected:
@@ -44,6 +55,7 @@ expect { user.update!(name: "RSpec User") }.to change_record(user).to(name: "RSp
44
55
  Sometimes it's useful to specify what the attributes should've been initially:
45
56
  ```ruby
46
57
  expect { user.update!(name: "RSpec User") }.to change_record(user).from(name: "Initial Name")
58
+ expect { user.name = "RSpec User" }.to not_change_record(user).from(name: "Initial Name")
47
59
  ```
48
60
 
49
61
  ### destroy_record
@@ -51,6 +63,7 @@ expect { user.update!(name: "RSpec User") }.to change_record(user).from(name: "I
51
63
  Check that code destroys a record:
52
64
  ```ruby
53
65
  expect { user.destroy! }.to destroy_record(user)
66
+ expect { user.save! }.to not_destroy_record(user)
54
67
  ```
55
68
 
56
69
  ### stub_class
@@ -7,13 +7,13 @@ module RSpec
7
7
  include RSpec::Matchers::BuiltIn::BaseMatcher::HashFormatting
8
8
 
9
9
  # Attributes of record should match these after block is executed
10
- def to(**attributes)
10
+ def to(attributes)
11
11
  @to = attributes
12
12
  self
13
13
  end
14
14
 
15
15
  # Attributes of record should match these before block is executed
16
- def from(**attributes)
16
+ def from(attributes)
17
17
  @from = attributes
18
18
  self
19
19
  end
@@ -12,7 +12,7 @@ module RSpec
12
12
  end
13
13
 
14
14
  # Make sure that created record matches attributes
15
- def matching(**attributes)
15
+ def matching(attributes)
16
16
  @attributes = attributes
17
17
  self
18
18
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RSpec
4
4
  module ActiveRecord
5
- VERSION = "0.1.0"
5
+ VERSION = "0.2.0"
6
6
  end
7
7
  end
@@ -53,3 +53,7 @@ module RSpec
53
53
  end
54
54
  end
55
55
  RSpec.configuration.include RSpec::ActiveRecord
56
+
57
+ RSpec::Matchers.define_negated_matcher :not_create_record, :create_record
58
+ RSpec::Matchers.define_negated_matcher :not_change_record, :change_record
59
+ RSpec::Matchers.define_negated_matcher :not_destroy_record, :destroy_record
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-active_record
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrius Chamentauskas
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-03-13 00:00:00.000000000 Z
11
+ date: 2024-07-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord