Experimental set of Matchers for Betamax that may possibly end up in the main package.
Usage:
from betamax_matchers.json_body import JSONBodyMatcher
from betamax import Betamax
Betamax.register_request_matcher(JSONBodyMatcher)
Usage:
from betamax_matchers.form_urlencoded import URLEncodedBodyMatcher
from betamax import Betamax
Betamax.register_request_matcher(URLEncodedBodyMatcher)
Usage:
from betamax_matchers.multipart import MultipartFormDataBodyMatcher
from betamax import Betamax
Betamax.register_request_matcher(MultipartFormDataBodyMatcher)