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 c829cb13b4875500efbe54aaa3d3c013564d9a8d
require
'
rspec
/
matchers
'
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