mirror of
https://github.com/kikobar/mastodon.git
synced 2024-11-07 10:21:53 +00:00
7 lines
251 B
Ruby
7 lines
251 B
Ruby
|
RSpec::Matchers.define :match_json_schema do |schema|
|
||
|
match do |input_json|
|
||
|
schema_path = Rails.root.join('spec', 'support', 'schema', "#{schema}.json").to_s
|
||
|
JSON::Validator.validate(schema_path, input_json, validate_schema: true)
|
||
|
end
|
||
|
end
|