demarches-normaliennes/spec/support/public_api_matchers.rb
2024-08-22 09:26:48 +02:00

7 lines
196 B
Ruby

# frozen_string_literal: true
RSpec::Matchers.define :have_failed_with do |expected|
match do |response|
JSON.parse(response.body).with_indifferent_access.dig(:error) == expected
end
end