File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,22 +5,10 @@ def test_configuration_is_present(host):
55 assert host .file ('/usr/local/etc/php/conf.d/zzz_xdebug.ini' ).exists is True
66 assert host .file ('/usr/local/etc/php/conf.d/zzz_dev.ini' ).exists is True
77
8- @pytest .mark .php_dev
9- def test_configuration_is_effective (host ):
10- configuration = host .run ('php -i' ).stdout
11-
12- assert u'expose_php => On => On' in configuration
13-
148@pytest .mark .php_no_dev
159def test_configuration_is_not_present (host ):
1610 assert host .file ('/usr/local/etc/php/conf.d/zzz_xdebug.ini' ).exists is False
1711 assert host .file ('/usr/local/etc/php/conf.d/zzz_dev.ini' ).exists is False
18-
19- @pytest .mark .php_no_dev
20- def test_configuration_is_not_effective (host ):
21- configuration = host .run ('php -i' ).stdout
22-
23- assert u'expose_php => Off => Off' in configuration
2412
2513@pytest .mark .php_dev
2614def composer_is_functional (host ):
You can’t perform that action at this time.
0 commit comments