Cross Reference: json_schema_matcher.rb
xref
: /
ontohub
/
spec
/
support
/
json_schema_matcher.rb
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
json_schema_matcher.rb revision 4e3398f764c43a67d5012578987dae68baf815bb
RSpec
::
Matchers.define
:
match_json_schema
do
|
schema
|
match
do
|
text
|
JSON
::
Validator.clear
_cache
JSON
::
Validator.validate
!
(
schema
,
text
,
strict
:
true
,
clear_cache
:
true
)
end
end