about summary refs log tree commit diff
path: root/spec/support/matchers/json/match_json_schema.rb
blob: 3a275199efd112238637259d1b21ced7140cc711 (plain) (blame)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

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