ContinuityControl/fdic

View on GitHub
lib/fdic/bank_find/schema_validators/history_event_validator.rb

Summary

Maintainability
A
0 mins
Test Coverage
module FDIC
  module BankFind
    module SchemaValidators
      class HistoryEventValidator < BaseValidator
        private
        def schema
          File.join(File.dirname(__FILE__), '../schemas/history_event_response_schema.json')
        end

        def client_method
          :find_history_events
        end

        def client_method_arguments
          ['thomaston savings bank', '18258']
        end
      end
    end
  end
end