rspec-wait 1.0.1 → 1.0.2
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/README.md +6 -5
- data/lib/rspec/wait/version.rb +1 -1
- data/rspec-wait.gemspec +1 -1
- metadata +4 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 55f8fdc4fbf01436c126c7f63222bb40289c1b38fcf6713ad8487c44ead3dd3d
|
4
|
+
data.tar.gz: 530916922b1c6664b0935a8dc3c8fe47ba7d07e1ae09b9cd6617bf3eadbf6d00
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ff2dbcbcf29b6545febf099dffb92f506ba839869d3e18313b2001e83d80386e920c0e64b4bb0d1e3d0dc229ad0b1be768eb67ef04a3918db6ffb066ade67cf
|
7
|
+
data.tar.gz: 1ff590e0c1acc3a7597f8bd500624c08b99d3e10a3a550a6361fceb75bce52bffb50e340a87a0eb4695dbfea757f8717abb1617b39bbc945021fe364d917b622
|
data/README.md
CHANGED
@@ -1,10 +1,11 @@
|
|
1
1
|
# RSpec::Wait
|
2
2
|
|
3
|
-
|
3
|
+
Time-resilient expectations in RSpec
|
4
|
+
|
5
|
+
[](https://github.com/laserlemon)
|
6
|
+
[](https://rubygems.org/gems/rspec-wait)
|
7
|
+
[](https://github.com/laserlemon/rspec-wait/actions/workflows/test.yml)
|
4
8
|
|
5
|
-
[](http://rubygems.org/gems/rspec-wait)
|
6
|
-
[](https://github.com/laserlemon/rspec-wait/actions/workflows/rake.yml)
|
7
|
-
[](https://github.com/laserlemon/rspec-wait/blob/-/LICENSE.txt)
|
8
9
|
|
9
10
|
## Why does RSpec::Wait exist?
|
10
11
|
|
@@ -181,7 +182,7 @@ per-context basis using `wait` metadata. Provide a hash containing any
|
|
181
182
|
number of shorthand keys and values for RSpec::Wait's configurations.
|
182
183
|
|
183
184
|
```ruby
|
184
|
-
scenario "A user can log in successfully", wait: { timeout: 3, delay: 0.5,
|
185
|
+
scenario "A user can log in successfully", wait: { timeout: 3, delay: 0.5, clone_matcher: true } do
|
185
186
|
visit new_session_path
|
186
187
|
|
187
188
|
fill_in "Email", with: "john@example.com"
|
data/lib/rspec/wait/version.rb
CHANGED
data/rspec-wait.gemspec
CHANGED
@@ -4,7 +4,7 @@ require_relative "lib/rspec/wait/version"
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = "rspec-wait"
|
7
|
-
spec.summary = "
|
7
|
+
spec.summary = "Time-resilient expectations in RSpec"
|
8
8
|
spec.description = "RSpec::Wait enables time-resilient expectations in your RSpec test suite."
|
9
9
|
spec.version = RSpec::Wait::VERSION
|
10
10
|
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-wait
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steve Richert
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: rspec
|
@@ -78,7 +77,6 @@ metadata:
|
|
78
77
|
homepage_uri: https://github.com/laserlemon/rspec-wait
|
79
78
|
rubygems_mfa_required: 'true'
|
80
79
|
source_code_uri: https://github.com/laserlemon/rspec-wait
|
81
|
-
post_install_message:
|
82
80
|
rdoc_options: []
|
83
81
|
require_paths:
|
84
82
|
- lib
|
@@ -93,8 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
93
91
|
- !ruby/object:Gem::Version
|
94
92
|
version: '0'
|
95
93
|
requirements: []
|
96
|
-
rubygems_version: 3.
|
97
|
-
signing_key:
|
94
|
+
rubygems_version: 3.6.7
|
98
95
|
specification_version: 4
|
99
|
-
summary:
|
96
|
+
summary: Time-resilient expectations in RSpec
|
100
97
|
test_files: []
|