PluginProbe
MLSImport: IDX Plugin & MLS Plugin for Real Estate Listings / 6.0.4
MLSImport: IDX Plugin & MLS Plugin for Real Estate Listings v6.0.4
7.2.1 7.2 7.1.2 7.1.1 7.1 7.0.4 7.0.6 7.0.7 6.3.8 6.3.7 6.3.6 6.3.5 6.3.4 6.3.3 6.3.1 trunk 5.7.3 5.7.5 5.8.1 5.8.2 5.8.3 5.8.4 5.8.6 6.0.4 6.0.5 All 36 releases
mlsimport / tests / ActivatorDeactivatorTest.php

ActivatorDeactivatorTest.php in MLSImport: IDX Plugin & MLS Plugin for Real Estate Listings 6.0.4, at tests/ActivatorDeactivatorTest.php

21 lines 741 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 use PHPUnit\Framework\TestCase;
3
4 class ActivatorDeactivatorTest extends TestCase {
5 public function test_activate_deletes_transient() {
6 global $deleted_transients;
7 $deleted_transients = [];
8 Mlsimport_Activator::activate();
9 $this->assertContains( 'mlsimport_plugin_data_schema', $deleted_transients );
10 }
11
12 public function test_deactivate_deletes_options() {
13 global $deleted_transients, $deleted_options;
14 $deleted_transients = [];
15 $deleted_options = [];
16 Mlsimport_Deactivator::deactivate();
17 $this->assertContains( 'mlsimport_plugin_data_schema', $deleted_transients );
18 $this->assertContains( 'mlsimport_admin_options', $deleted_options );
19 }
20 }
21