aboutsummaryrefslogtreecommitdiff
path: root/test/test.properties
diff options
context:
space:
mode:
authorAlessandro Iezzi <aiezzi@alessandroiezzi.it>2024-08-13 11:08:56 +0200
committerAlessandro Iezzi <aiezzi@alessandroiezzi.it>2024-08-13 11:08:56 +0200
commit4e5fcd691545ea51d17a2aa8accfc89d303c3d9f (patch)
treeb012c9feeaf244bc300c6555559dde8873780e82 /test/test.properties
parent1cf817eba1ab8c2ee46a73c6bea9b7e70e418cdd (diff)
downloadproperties-4e5fcd691545ea51d17a2aa8accfc89d303c3d9f.tar.gz
properties-4e5fcd691545ea51d17a2aa8accfc89d303c3d9f.zip
Add possibility of using ':' and '=' as values
Diffstat (limited to 'test/test.properties')
-rw-r--r--test/test.properties14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/test.properties b/test/test.properties
index e34ebc9..66953ca 100644
--- a/test/test.properties
+++ b/test/test.properties
@@ -31,3 +31,17 @@ key2.1 =
key3 = A value
# A value beginning with tabs
key3.1 = A value
+
+# A value containing an equal
+key4 = A value with an = symbol
+key4.1 = = (equal is a symbol)
+# A value, just an equal
+key4.2 = =
+
+# Tests with a colon
+key5:value5
+key5.1 : value5.1
+key5.2 :
+key5.3 ::
+key5.2 : : symbol
+key5.2 : := symbols \ No newline at end of file