summaryrefslogtreecommitdiff
path: root/tests/examplefiles/example.toml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/examplefiles/example.toml')
-rw-r--r--tests/examplefiles/example.toml15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/examplefiles/example.toml b/tests/examplefiles/example.toml
new file mode 100644
index 00000000..40832c22
--- /dev/null
+++ b/tests/examplefiles/example.toml
@@ -0,0 +1,15 @@
+name = "TOML sample file"
+
+[section]
+key = "value"
+literal_string = 'C:\test'
+other_string = '''value'''
+list = [1, 2, 3]
+nested_list = [ [1, 2], [3, 4] ]
+float_variable = 13.37
+
+ [section.nested]
+ boolean_variable = false
+ date_variable = 1969-97-24T16:50:35-00:00
+
+# Comment \ No newline at end of file