diff options
author | pommicket <pommicket@gmail.com> | 2025-09-23 01:54:41 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-09-23 01:54:41 -0400 |
commit | 83ee81133b2c8a853330c8b683c391068ce36a97 (patch) | |
tree | 0b6beac7c1f3759359393ba6ad49a90b90f2a1d6 /tests | |
parent | 6e412aa238193d575feae41930eec383c8337393 (diff) |
Add empty value tests for interpretation
Diffstat (limited to 'tests')
-rw-r--r-- | tests/interpretation/bool.pom | 1 | ||||
-rw-r--r-- | tests/interpretation/float.pom | 1 | ||||
-rw-r--r-- | tests/interpretation/int.pom | 1 | ||||
-rw-r--r-- | tests/interpretation/uint.pom | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/tests/interpretation/bool.pom b/tests/interpretation/bool.pom index 1911cfc..b94d2f4 100644 --- a/tests/interpretation/bool.pom +++ b/tests/interpretation/bool.pom @@ -18,3 +18,4 @@ leading_space = " yes" trailing_space = "yes " fake = untrue fake2 = disabled +empty = diff --git a/tests/interpretation/float.pom b/tests/interpretation/float.pom index e898f39..4d25838 100644 --- a/tests/interpretation/float.pom +++ b/tests/interpretation/float.pom @@ -43,3 +43,4 @@ NaN = NaN Infinity = Infinity terminal_dot = 8. dot_followed_by_e = 8.e3 +empty = diff --git a/tests/interpretation/int.pom b/tests/interpretation/int.pom index dde9873..9a9c1f3 100644 --- a/tests/interpretation/int.pom +++ b/tests/interpretation/int.pom @@ -48,3 +48,4 @@ much_too_large = 9999999999999999 too_small = -9007199254740992 too_small_hex = -0x20000000000000 much_too_small = -9999999999999999 +empty = diff --git a/tests/interpretation/uint.pom b/tests/interpretation/uint.pom index 1946a0f..e934ba2 100644 --- a/tests/interpretation/uint.pom +++ b/tests/interpretation/uint.pom @@ -38,3 +38,4 @@ too_large = 9007199254740992 too_large_hex = 0x20000000000000 much_too_large = 9999999999999999 negative_zero = -0 +empty = |