easytest 0.10.1 → 0.11.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/lib/easytest/dsl.rb +2 -2
- data/lib/easytest/version.rb +1 -1
- data/sig/easytest.rbs +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a26a4c476cdf2c4908802c951c61bbeaeb898268e28a8c6e744287c513bb8ae9
|
4
|
+
data.tar.gz: 14d1f823c3a2edc1453fa7dbabee290bd5f815a8d79bbc87ad1415a4cc8d678a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 030a29f7f9aa8439bd65e3f36e028c89fd1df6553ba7f523fc50f9b830663cf01a87b43548e95b8b19470b7333939fb25707f189904358253024bfcf0c409301
|
7
|
+
data.tar.gz: 57281afe652b63dd426dd3432cced11f94403f9b2df3d17b7a4d2a537f884ead3f1d20044c64e984abd72ce1dbb8cdf4a995fc2333bea7f1c80f30ed23bf7a94
|
data/CHANGELOG.md
CHANGED
data/lib/easytest/dsl.rb
CHANGED
data/lib/easytest/version.rb
CHANGED
data/sig/easytest.rbs
CHANGED
@@ -71,7 +71,7 @@ module Easytest
|
|
71
71
|
def to_have_attributes: (**untyped expected) -> void
|
72
72
|
|
73
73
|
# Expect to satisfy a condition that the given block returns `true`.
|
74
|
-
def to_satisfy: () { (untyped actual) ->
|
74
|
+
def to_satisfy: () { (untyped actual) -> boolish } -> void
|
75
75
|
|
76
76
|
# Expect to raise the given exception or an exception with the given message.
|
77
77
|
def to_raise: (Class expected, ?(String | Regexp)? with_message) -> void
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: easytest
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.11.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Masafumi Koba
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-06-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: listen
|
@@ -95,14 +95,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
95
95
|
requirements:
|
96
96
|
- - ">="
|
97
97
|
- !ruby/object:Gem::Version
|
98
|
-
version: '3.
|
98
|
+
version: '3.1'
|
99
99
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
100
100
|
requirements:
|
101
101
|
- - ">="
|
102
102
|
- !ruby/object:Gem::Version
|
103
103
|
version: '0'
|
104
104
|
requirements: []
|
105
|
-
rubygems_version: 3.
|
105
|
+
rubygems_version: 3.5.9
|
106
106
|
signing_key:
|
107
107
|
specification_version: 4
|
108
108
|
summary: Easy testing for Ruby.
|