Flugg\Responder\Tests\Unit\SuccessResponseBuilderTest::addMetaMethodShouldAddMetaDataToResource PHP Method

addMetaMethodShouldAddMetaDataToResource() public method

Test that the [addMeta] method adds the meta data to the resource instance.
    public function addMetaMethodShouldAddMetaDataToResource()
    {
        // Arrange...
        $responseBuilder = $this->app->make('responder.success');
        $meta = ['foo' => 1];
        // Act...
        $responseBuilder->addMeta($meta);
        // Assert...
        $this->assertEquals($responseBuilder->getResource()->getMeta(), $meta);
    }
SuccessResponseBuilderTest