1"""
2Hide tristate choice values with mod dependency in y choice.
3
4If tristate choice values depend on symbols set to 'm', they should be
5hidden when the choice containing them is changed from 'm' to 'y'
6(i.e. exclusive choice).
7
8Related Linux commit: fa64e5f6a35efd5e77d639125d973077ca506074
9"""
10
11
12def test(conf):
13    assert conf.oldaskconfig('config', 'y') == 0
14    assert conf.config_contains('expected_config')
15    assert conf.stdout_contains('expected_stdout')
16