Gush\Tests\Template\Pats\PatTemplateTest::renders_string_with_placeholders_filled PHP Method

renders_string_with_placeholders_filled() public method

    public function renders_string_with_placeholders_filled()
    {
        $this->template->bind(['author' => self::TEST_AUTHOR, 'pat' => 'thank_you']);
        $this->assertContains(self::TEST_AUTHOR, $this->template->render());
    }