module GdsApi::TestHelpers::EmailAlertApi

def email_alert_api_has_subscribable(reference:, returned_attributes:)

def email_alert_api_has_subscribable(reference:, returned_attributes:)
  stub_request(:get, subscribable_url(reference))
    .to_return(
      status: 200,
      body: {
        subscribable: returned_attributes
      }.to_json
  )
end