Testing network parser
This commit is contained in:
parent
b53e8ae720
commit
1e9b37f970
1 changed files with 23 additions and 0 deletions
|
@ -0,0 +1,23 @@
|
|||
<?php
|
||||
/**
|
||||
* Class LBRYPressTest
|
||||
*
|
||||
* @package Lbrypress
|
||||
*/
|
||||
|
||||
/**
|
||||
* Test case for primary plugin class
|
||||
*/
|
||||
class LBRY_Network_Parser_Test extends WP_UnitTestCase
|
||||
{
|
||||
public function setUp()
|
||||
{
|
||||
parent::setUp();
|
||||
|
||||
$this->class_instance = new LBRY_Network_Parser();
|
||||
}
|
||||
|
||||
public function test_convert_to_markdown()
|
||||
{
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue