aboutsummaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
Diffstat (limited to 't')
-rw-r--r--t/100-increment-decrement.t6
1 files changed, 6 insertions, 0 deletions
diff --git a/t/100-increment-decrement.t b/t/100-increment-decrement.t
index 5d7287a..9d5d0ad 100644
--- a/t/100-increment-decrement.t
+++ b/t/100-increment-decrement.t
@@ -37,4 +37,10 @@ is(
'increments the second integer with point at position 7'
);
+is(
+ incdec::incdec('test 12 19 555', 9),
+ 'test 12 20 555',
+ 'increments the second double-digit integer with point at position 9'
+);
+
done_testing;