@@ -1,20 +1,20 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -class AdminTestCest { |
|
| 3 | +class AdminTestCest { |
|
| 4 | 4 | |
| 5 | 5 | |
| 6 | - public function TestPluginActivationDeactivation( AcceptanceTester $I ) { |
|
| 6 | + public function TestPluginActivationDeactivation(AcceptanceTester $I) { |
|
| 7 | 7 | |
| 8 | - $I->wantTo( 'See if WP PHP Console is listed in the Plugins page.' ); |
|
| 8 | + $I->wantTo('See if WP PHP Console is listed in the Plugins page.'); |
|
| 9 | 9 | |
| 10 | 10 | $I->amOnPluginsPage(); |
| 11 | 11 | |
| 12 | - $I->seePluginActivated( 'wp-php-console' ); |
|
| 12 | + $I->seePluginActivated('wp-php-console'); |
|
| 13 | 13 | |
| 14 | - $I->wantTo( 'Deactivate and reactivate WP PHP Console.' ); |
|
| 14 | + $I->wantTo('Deactivate and reactivate WP PHP Console.'); |
|
| 15 | 15 | |
| 16 | - $I->deactivatePlugin( 'wp-php-console' ); |
|
| 17 | - $I->activatePlugin( 'wp-php-console' ); |
|
| 16 | + $I->deactivatePlugin('wp-php-console'); |
|
| 17 | + $I->activatePlugin('wp-php-console'); |
|
| 18 | 18 | } |
| 19 | 19 | |
| 20 | 20 | |