WhitePayments/match_json

View on GitHub
lib/match_json/matchers.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'match_json/matchers/include_json'

module MatchJson
  module Matchers
    def include_json(json)
      MatchJson::Matchers::IncludeJson.new(json)
    end
  end
end