# frozen_string_literal: true module ConvenientService module RSpec module Matchers module Custom module Results class BeNotFailure < Results::Base def statuses [ Service::Plugins::HasResult::Constants::ERROR_STATUS, Service::Plugins::HasResult::Constants::SUCCESS_STATUS ] end end end end end end end