2021-11-04 08:15:50 +01:00
|
|
|
import os
|
|
|
|
import toml
|
2021-11-18 12:27:59 +01:00
|
|
|
import toml.to
|
2021-11-04 08:15:50 +01:00
|
|
|
|
|
|
|
const (
|
|
|
|
toml_table_text = '
|
|
|
|
[[products]]
|
|
|
|
name = "Hammer"
|
|
|
|
sku = 738594937
|
|
|
|
|
|
|
|
[[products]] # empty table within the array
|
|
|
|
|
|
|
|
[[products]]
|
|
|
|
name = "Nail"
|
|
|
|
sku = 284758393
|
|
|
|
|
|
|
|
color = "gray"'
|
|
|
|
)
|
|
|
|
|
|
|
|
fn test_tables() {
|
|
|
|
mut toml_doc := toml.parse(toml_table_text) or { panic(err) }
|
|
|
|
|
2021-11-18 12:27:59 +01:00
|
|
|
toml_json := to.json(toml_doc)
|
2021-11-04 08:15:50 +01:00
|
|
|
|
|
|
|
assert toml_json == os.read_file(
|
|
|
|
os.real_path(os.join_path(os.dir(@FILE), 'testdata', os.file_name(@FILE).all_before_last('.'))) +
|
|
|
|
'.out') or { panic(err) }
|
|
|
|
}
|