Testing network parser

This commit is contained in:
Paul Kirby 2018-10-11 15:59:55 -05:00
parent b53e8ae720
commit 1e9b37f970

View file

@ -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()
{
}
}