We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c56eab commit 0b2c236Copy full SHA for 0b2c236
1 file changed
t/yaml-implicit-typing.t
@@ -47,12 +47,12 @@ subtest 'boolean false values' => sub {
47
48
# ── Integer types ───────────────────────────────────────────────────
49
subtest 'decimal integers' => sub {
50
- is( load_val('0'), 0, '0' );
51
- is( load_val('1'), 1, '1' );
52
- is( load_val('42'), 42, '42' );
+ is( load_val('0'), 0, 'number 0' );
+ is( load_val('1'), 1, 'number 1' );
+ is( load_val('42'), 42, 'number 42' );
53
is( load_val('-1'), -1, '-1' );
54
is( load_val('+1'), 1, '+1' );
55
- is( load_val('1000'), 1000, '1000' );
+ is( load_val('1000'), 1000, 'number 1000' );
56
};
57
58
subtest 'integers with commas (YAML 1.0)' => sub {
0 commit comments