| 1 |
<?php |
| 2 |
|
| 3 |
namespace cookiebot_addons\tests\integration\addons; |
| 4 |
|
| 5 |
class Test_Optinmonster extends \WP_UnitTestCase { |
| 6 |
|
| 7 |
public function setUp() { |
| 8 |
|
| 9 |
} |
| 10 |
|
| 11 |
/** |
| 12 |
* This will validate if the hook "api-scripts" still exists |
| 13 |
* |
| 14 |
* @since 2.1.0 |
| 15 |
*/ |
| 16 |
public function test_optinmonster() { |
| 17 |
$content = file_get_contents( 'http://plugins.svn.wordpress.org/optinmonster/trunk/OMAPI/Output.php' ); |
| 18 |
|
| 19 |
$this->assertNotFalse( strpos( $content, 'add_action( \'wp_enqueue_scripts\', array( $this, \'api_script\' ) );') ); |
| 20 |
} |
| 21 |
} |
| 22 |
|