Sha256: a9a58f8ba6e6a3f0b44360e6e7daad9af31e797575951e2260eca25a2e9eecf3
Contents?: true
Size: 422 Bytes
Versions: 32
Compression:
Stored size: 422 Bytes
Contents
# frozen_string_literal: true require "spec_helper" describe Ibandit::Constants do Ibandit::Constants::PSEUDO_IBAN_COUNTRY_CODES.each do |country_code| context country_code do it "has padding character" do padding = Ibandit::Constants::PSEUDO_IBAN_PADDING_CHARACTER_FOR[country_code] expect(padding).to_not be_nil expect(padding.length).to eq(1) end end end end
Version data entries
32 entries across 32 versions & 1 rubygems