axe-core-api 2.6.1.pre.78a535c → 4.0.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/lib/axe/dsl.rb +2 -2
- data/lib/axe/matchers/{be_accessible.rb → be_axe_clean.rb} +3 -3
- 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: 9643d81e17129aeceeeae359d0bff29ca30fea8fe9291bf35081caee537eec42
|
|
4
|
+
data.tar.gz: 58e7bd8b82a0a1a17d047a3417a22e82b794ada5b62447b83acf2a5689a12a9f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1926fe5633260d63b6b4f21a5cd5e8387135a7b46767f7796abe8dd354f6c6da996aab61c70b4f700b28d5e7ed892a3d0b2860b9479a0b5baff76d0d50c6e744
|
|
7
|
+
data.tar.gz: 5452fd2f97449a985d9eaa9f448c665048aaab8b5f7f7900e5171a78811a2fafb5b217804990963f9d50908ef956f72134b61ee29ee015e0398046f4ace38696
|
data/lib/axe/dsl.rb
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
require_relative "./matchers/
|
|
1
|
+
require_relative "./matchers/be_axe_clean"
|
|
2
2
|
require_relative "./expectation"
|
|
3
3
|
|
|
4
4
|
module Axe
|
|
5
5
|
module DSL
|
|
6
6
|
module_function
|
|
7
7
|
|
|
8
|
-
# get the
|
|
8
|
+
# get the be_axe_clean matcher method
|
|
9
9
|
extend Matchers
|
|
10
10
|
|
|
11
11
|
def expect(page)
|
|
@@ -6,7 +6,7 @@ require_relative "../api/run"
|
|
|
6
6
|
|
|
7
7
|
module Axe
|
|
8
8
|
module Matchers
|
|
9
|
-
class
|
|
9
|
+
class BeAxeClean
|
|
10
10
|
extend Forwardable
|
|
11
11
|
def_delegators :@audit, :failure_message, :failure_message_when_negated
|
|
12
12
|
def_delegators :@run, :within, :excluding, :according_to, :checking, :checking_only, :skipping, :with_options
|
|
@@ -29,8 +29,8 @@ module Axe
|
|
|
29
29
|
|
|
30
30
|
module_function
|
|
31
31
|
|
|
32
|
-
def
|
|
33
|
-
|
|
32
|
+
def be_axe_clean
|
|
33
|
+
BeAxeClean.new
|
|
34
34
|
end
|
|
35
35
|
end
|
|
36
36
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: axe-core-api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 4.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Deque Systems
|
|
@@ -163,7 +163,7 @@ files:
|
|
|
163
163
|
- lib/axe/dsl.rb
|
|
164
164
|
- lib/axe/expectation.rb
|
|
165
165
|
- lib/axe/finds_page.rb
|
|
166
|
-
- lib/axe/matchers/
|
|
166
|
+
- lib/axe/matchers/be_axe_clean.rb
|
|
167
167
|
- lib/chain_mail/chainable.rb
|
|
168
168
|
- lib/hooks.rb
|
|
169
169
|
- lib/loader.rb
|
|
@@ -189,9 +189,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
189
189
|
version: 2.3.0
|
|
190
190
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
191
191
|
requirements:
|
|
192
|
-
- - "
|
|
192
|
+
- - ">="
|
|
193
193
|
- !ruby/object:Gem::Version
|
|
194
|
-
version:
|
|
194
|
+
version: '0'
|
|
195
195
|
requirements: []
|
|
196
196
|
rubygems_version: 3.0.3
|
|
197
197
|
signing_key:
|