mirror of
https://github.com/10h30/wp-strava.git
synced 2026-07-11 18:56:18 +09:00
Scaffolded unit tests
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
use \WP_Mock\Tools\TestCase;
|
||||
|
||||
class WPStrava_SOMEnglishTest extends TestCase {
|
||||
|
||||
public function test_true() {
|
||||
$som = new WPStrava_SOMEnglish();
|
||||
$this->assertInstanceOf( 'WPStrava_SOMEnglish', $som );
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
if ( ! defined( 'WPSTRAVA_PLUGIN_DIR' ) ) define( 'WPSTRAVA_PLUGIN_DIR', dirname( __FILE__ ) . '/../' );
|
||||
require_once dirname( __FILE__ ) . '/../lib/autoload.php';
|
||||
|
||||
WP_Mock::bootstrap();
|
||||
Reference in New Issue
Block a user