wireplumber/tests/wp/settings/wireplumber.conf
Julian Bouzas d43b55d01e tests: use WpConf for the settings unit tests
Also moves the settings.conf file into settings/wireplumber.conf
2023-04-17 07:48:18 -04:00

17 lines
537 B
Text

context.modules = [
{ name = libpipewire-module-protocol-native }
{ name = libpipewire-module-metadata }
]
wireplumber.settings = {
test-setting1 = false
test-setting2 = true
test-setting3-int = -20
test-setting4-string = "blahblah"
test-setting5-string-with-quotes = "a string with \"quotes\""
test-setting-float1 = 3.14
test-setting-float2 = 0.4
test-setting-json = [1, 2, 3]
test-setting-json2 = ["test1", "test 2", "test three", "test-four"]
test-setting-json3 = { key1: "value", key2: 2, key3: true }
}