diff --git a/tests/Feature/Commands/BuildRssFeedCommandTest.php b/tests/Feature/Commands/BuildRssFeedCommandTest.php index 1575896a..353d23bd 100644 --- a/tests/Feature/Commands/BuildRssFeedCommandTest.php +++ b/tests/Feature/Commands/BuildRssFeedCommandTest.php @@ -7,6 +7,7 @@ use Hyde\Facades\Filesystem; use Hyde\Hyde; use Hyde\Testing\TestCase; +use Hyde\Framework\Actions\PostBuildTasks\GenerateRssFeed; /** * @covers \Hyde\Console\Commands\BuildRssFeedCommand @@ -20,6 +21,7 @@ public function testRssFeedIsGeneratedWhenConditionsAreMet() config(['hyde.rss.enabled' => true]); $this->file('_posts/foo.md'); +dump( RssFeedGenerator::make()); $this->assertFileDoesNotExist(Hyde::path('_site/feed.xml')); $this->artisan('build:rss')->assertExitCode(0);