Skip to content

Commit

Permalink
payments: expand test coverage for ISO-11649 header filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
jayaddison committed Dec 18, 2023
1 parent 2020988 commit 2085434
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/test_payment.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,14 @@
"ref, expected",
[
("M87X CJ3Q", "M87X CJ3Q"),
("prefix*M87X CJ3Q*suffix", "prefix*M87X CJ3Q*suffix"),
("RF91 M87X CJ3Q", "M87X CJ3Q"),
("name value RF52RF23MHBY type value", "name value RF23MHBY type value"),
("prefix*RF52RF23MHBY*suffix", "prefix*RF23MHBY*suffix"),
("RF52RF23MHBY", "RF23MHBY"),
("RF33*RF52RF23MHBY*RF33", "RF33*RF23MHBY*RF33"),
("RF23MHBY", "RF23MHBY"),
("RF33*RF23MHBY*RF33", "RF33*RF23MHBY*RF33"),
],
)
def test_trim_iso11649_header(ref, expected):
Expand Down

0 comments on commit 2085434

Please sign in to comment.