Skip to content

Commit

Permalink
Added generator test stubs #315
Browse files Browse the repository at this point in the history
  • Loading branch information
carbontwelve committed Aug 15, 2018
1 parent 3485589 commit 50b50b9
Showing 1 changed file with 27 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
use Tapestry\Tapestry;
use Tapestry\Tests\TestCase;

class ContentGeneratorFactoryNTest extends TestCase
class ContentGeneratorsNTest extends TestCase
{
public function testContentGeneratorFactory()
{
Expand All @@ -30,6 +30,32 @@ public function testContentGeneratorFactory()
$this->assertTrue(is_array($result));
$this->assertSame($memory, $result[0]);

// @todo finish this test
}

public function testGeneratorGenerator()
{
// Tapestry\Modules\Generators\Generator
$this->assertTrue(false);
}

public function testCollectionItemGenerator()
{
$this->assertTrue(false);
}

public function testPaginationGenerator()
{
$this->assertTrue(false);
}

public function testTaxonomyArchiveGenerator()
{
$this->assertTrue(false);
}

public function testTaxonomyIndexGenerator()
{
$this->assertTrue(false);
}
}

0 comments on commit 50b50b9

Please sign in to comment.