2021-11-16 07:41:37 +01:00
|
|
|
import os
|
|
|
|
import toml
|
2021-11-18 12:27:59 +01:00
|
|
|
import toml.to
|
2021-11-16 07:41:37 +01:00
|
|
|
|
2022-03-18 22:32:06 +01:00
|
|
|
const fprefix = os.join_path(os.dir(@FILE), 'testdata', os.file_name(@FILE).all_before_last('.'))
|
|
|
|
|
|
|
|
fn test_parse() ? {
|
|
|
|
toml_doc := toml.parse_file(os.real_path(fprefix + '.toml')) ?
|
2021-11-16 07:41:37 +01:00
|
|
|
|
2021-11-18 12:27:59 +01:00
|
|
|
toml_json := to.json(toml_doc)
|
2021-11-16 07:41:37 +01:00
|
|
|
println(toml_json)
|
2022-03-18 22:32:06 +01:00
|
|
|
|
|
|
|
out_file_json := os.read_file(os.real_path(fprefix + '.out')) ?
|
2021-11-16 07:41:37 +01:00
|
|
|
assert toml_json == out_file_json
|
|
|
|
}
|