Cviebrock\EloquentTaggable\Test\Configuration\CustomNormalizerTests::testCustomNormalizerNormalized PHP Method

testCustomNormalizerNormalized() public method

Test normalized tag list with custom glue
    public function testCustomNormalizerNormalized()
    {
        $this->testModel->tag('Apple,Banana,Cherry');
        $this->assertArrayValuesAreEqual(['elppA', 'ananaB', 'yrrehC'], $this->testModel->tagArrayNormalized);
    }