Return number if it already ends with zero

The specification does not mention this fact
https://www.pangaliit.ee/settlements-and-standards/reference
-number-of-the-invoice
This commit is contained in:
Artur Beljajev 2019-01-17 18:15:07 +02:00
parent 640faaadb9
commit 214b7e435d
2 changed files with 2 additions and 1 deletions

View file

@ -15,6 +15,7 @@ class ReferenceNoBaseTest < ActiveSupport::TestCase
def test_generates_check_digit_for_a_given_base
assert_equal 3, Billing::ReferenceNo::Base.new('1').check_digit
assert_equal 7, Billing::ReferenceNo::Base.new('1234567891234567891').check_digit
assert_equal 0, Billing::ReferenceNo::Base.new('773423').check_digit
end
def test_returns_string_representation