view cfg.test01 @ 760:1cb9454ec569

Add some simple tests for linked lists.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 05 Feb 2023 04:00:50 +0200
parents 77495c646208
children
line wrap: on
line source

# Configuration written by th-libs unit tests 0.2

general = {
    # A comment that
    # spans multiple
    # lines automatically
    a_string_setting = "v_str1" #test

    # Hex triplet value setting
    hexval="11223344"

    # A boolean value
    boolval = no

    # A string list
    string_list = "\zoo",

   "foo",
"b\"ar"
}

another_sect = {
    # Another section
    boolval = yes
    inside_sect = {
        # Section inside a section
        intval
= 112
    }
}