Sha256: 77a0cf822cddd601a9c384f2d19a981c57731d73686cbd4600a5ef1780230b04

Contents?: true

Size: 403 Bytes

Versions: 3

Compression:

Stored size: 403 Bytes

Contents

module FDIC
  module BankFind
    module SchemaValidators
      class BankValidator < BaseValidator
        private
        def schema
          File.join(File.dirname(__FILE__), '../schemas/bank_response_schema.json')
        end

        def client_method
          :find_bank
        end

        def client_method_arguments
          'thomaston savings bank'
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fdic-0.9.2 lib/fdic/bank_find/schema_validators/bank_validator.rb
fdic-0.9.1 lib/fdic/bank_find/schema_validators/bank_validator.rb
fdic-0.9.0 lib/fdic/bank_find/schema_validators/bank_validator.rb