Delivery setup

This commit is contained in:
Almira Krdzic
2018-08-06 17:36:57 +02:00
parent ed0e44b964
commit 5afdde434b
27 changed files with 2809 additions and 236 deletions

View File

@@ -0,0 +1,17 @@
<?php
class Wiaas_Unit_Test_Case extends WP_UnitTestCase {
/**
* Executes any db migrations that are done to
* `wp_options` table since it is deleted on every execution
*/
function setUp() {
parent::setUp();
# Setup Gravity info since options table is deleted after each test
gf_upgrade()->install();
wiaas_db_update_setup_gravity();
}
}