gitlab-org--gitlab-foss/spec/support/api/schema_matcher.rb

9 lines
286 B
Ruby
Raw Normal View History

2016-08-16 14:13:21 +00:00
RSpec::Matchers.define :match_response_schema do |schema, **options|
match do |response|
schema_directory = "#{Dir.pwd}/spec/fixtures/api/schemas"
schema_path = "#{schema_directory}/#{schema}.json"
2016-08-16 14:13:21 +00:00
JSON::Validator.validate!(schema_path, response.body, options)
end
end