spreewald 4.3.3 → 4.3.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -1
- data/lib/spreewald.rb +0 -1
- data/lib/spreewald_support/version.rb +1 -1
- data/tests/rails-6_capybara-3/Gemfile.lock +1 -1
- 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: 5f34885277a60b29d3517bbd0184b7af2dbf9f6240260f78abd4b448ea2d0162
|
4
|
+
data.tar.gz: bea792896988996ad517bc931db34a53153f14047523cfd81497bb67398edeec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ebfa401560e88582c1e9a1cd2ce1ee519f680cafcf2ce21e847d176185ab41eae03df04c37feb307b7c24cab13d8941b32485d3ca3bf048012bae76d3e05785
|
7
|
+
data.tar.gz: 547978935df291a82c4af3e7786697e78cd9406a7199e4a4e80a38b216b263806b61ae0b72ed9e61dec1e5bd87fd4d2cc8baf4c8c065899a0e31c7f353d41642
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.
|
|
3
3
|
|
4
4
|
This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
5
5
|
|
6
|
+
## 4.3.4
|
7
|
+
- Fix "undefined method `build_rb_world_factory` for nil:NilClass" error when running tests on a real project'
|
8
|
+
- The field error class couldn't be required in certain circumstances and so the specs failed
|
9
|
+
|
6
10
|
## 4.3.3
|
7
11
|
- Fixes that the `Spreewald.field_error_class` configuration
|
8
12
|
did not find the correct elements
|
@@ -12,7 +16,14 @@ did not find the correct elements
|
|
12
16
|
- `The ... field should have the error ...`
|
13
17
|
- `The ... field should have an error`
|
14
18
|
- Added the possibility to specify custom error classes and message selectors for these steps
|
15
|
-
using `Spreewald.field_error_class` and `Spreewald.error_message_xpath_selector` in your configuration.
|
19
|
+
using `Spreewald.field_error_class` and `Spreewald.error_message_xpath_selector` in your configuration.
|
20
|
+
|
21
|
+
- We had separate steps for e.g. `I should see ...` and `I should not see ...`. These were merged now:
|
22
|
+
- `I should see "..."` + `I should not see "..."` => `I should( not)? see "..."`
|
23
|
+
- `I should see /.../` + `I should not see /.../` => `I should( not)? see /.../`
|
24
|
+
- `I should see '...'` + `I should not see '...'` => `I should( not)? see '...'`
|
25
|
+
- Optional negation was made more consistent. The steps use `"( not)? "` now.
|
26
|
+
- The search via `spreewald some query here` includes steps with optional negation now.
|
16
27
|
|
17
28
|
## 4.2.2
|
18
29
|
- Fixes the "Show me the email" step (#171)
|
data/lib/spreewald.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spreewald
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.3.
|
4
|
+
version: 4.3.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tobias Kraze
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-12-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cucumber
|