Bolt\Tests\Twig\RecordHandlerTest::testExcerptArray PHP Method

testExcerptArray() public method

public testExcerptArray ( )
    public function testExcerptArray()
    {
        $app = $this->getApp();
        $handler = new RecordHandler($app);
        $content = ['id' => 42, 'slug' => 'clippy-inc', 'datecreated' => null, 'datechanged' => null, 'username' => 'clippy', 'ownerid' => null, 'title' => 'Attack of the Drop Bear', 'contenttype' => 'koala', 'status' => 'published', 'taxonomy' => null, 'body' => $this->original];
        $result = $handler->excerpt($content, 87);
        $this->assertSame($this->excerpt, (string) $result);
    }