Lines Matching refs:conf
13 def test_oldask0(conf): argument
14 assert conf.oldaskconfig() == 0
15 assert conf.stdout_contains('oldask0_expected_stdout')
18 def test_oldask1(conf): argument
19 assert conf.oldaskconfig('oldask1_config') == 0
20 assert conf.stdout_contains('oldask1_expected_stdout')
23 def test_allyes(conf): argument
24 assert conf.allyesconfig() == 0
25 assert conf.config_contains('allyes_expected_config')
28 def test_allmod(conf): argument
29 assert conf.allmodconfig() == 0
30 assert conf.config_contains('allmod_expected_config')
33 def test_allno(conf): argument
34 assert conf.allnoconfig() == 0
35 assert conf.config_contains('allno_expected_config')
38 def test_alldef(conf): argument
39 assert conf.alldefconfig() == 0
40 assert conf.config_contains('alldef_expected_config')