Artifact c33ef4a2eed5e1801b91e1e16177c3a573e72090f5bc1ec3cdfc8e4378df176b:
- File test/config_complex.py — part of check-in [4b8c748142] at 2022-10-25 22:06:05 on branch trunk — enjoin pluginconf (python implementation here) (user: mario, size: 431) [annotate] [blame] [check-ins using]
# type: test # title: config edge cases # description: some less stable options # config: # { name: nested, value: "{var}", description: "should be able to understand {enclosed} braces" } # version: 0.1 # # Do all the settings! import pytest import pluginconf @pytest.fixture def config(): return pluginconf.plugin_meta(fn=__file__)["config"] def name(config): print(config) assert config[0]["value"] == "{var}"