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 +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +15 -2
- data/lib/rspec/active_record/change_record.rb +2 -2
- data/lib/rspec/active_record/create_record.rb +1 -1
- data/lib/rspec/active_record/version.rb +1 -1
- data/lib/rspec/active_record.rb +4 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a80d964b05c481f1983c91d5a441ae6a26381bd19cb2006710d94a09761dbef
|
4
|
+
data.tar.gz: 5a17586dcfbfaca18bfb02f94ce450aaf7de83f35ecd9aac5ba40d3f7faa0d5c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9089391ec0c25bdfd0506a680fc455303c88979225687b0a92afab956752739a116112f333a1fe58642b025417be83bbdc6827e01796186cd7962925c03a33bf
|
7
|
+
data.tar.gz: d8fa5e16d109c9d1c1dc6724c4269fd4b6fa1990cfe19390526a53c5ea7486a8d401e4ce5873a07b316ffb60f294450939c0e38b3c775e7c7098d9fe54ede023
|
data/CHANGELOG.md
CHANGED
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
|
-
|
7
|
+
Add it to Gemfile:
|
8
8
|
|
9
|
-
|
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(
|
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(
|
16
|
+
def from(attributes)
|
17
17
|
@from = attributes
|
18
18
|
self
|
19
19
|
end
|
data/lib/rspec/active_record.rb
CHANGED
@@ -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.
|
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-
|
11
|
+
date: 2024-07-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|