Example #1
0
 public function testAddDuplicateRelation()
 {
     $article = new Article();
     $article->addCloneableRelation('test');
     $article->addCloneableRelation('test');
     $this->assertEquals(['photos', 'authors', 'test'], $article->getCloneableRelations());
 }