Cviebrock\EloquentTaggable\Test\ScopeTests::testWithoutTags PHP Méthode

testWithoutTags() public méthode

public testWithoutTags ( )
    public function testWithoutTags()
    {
        /** @var Collection $models */
        $models = TestModel::withoutTags()->get();
        $keys = $models->modelKeys();
        $this->assertArrayValuesAreEqual([$this->testModel->getKey()], $keys);
    }