|
351 | 351 | });
|
352 | 352 |
|
353 | 353 | it('can check if it has a tag', function () {
|
354 |
| - $model = TestModel::create(['name' => 'test model']); |
355 | 354 | $tag = Tag::findOrCreate('test-tag');
|
356 | 355 | $anotherTag = Tag::findOrCreate('another-tag');
|
357 | 356 |
|
358 |
| - $model->attachTag($tag); |
| 357 | + $this->testModel->attachTag($tag); |
359 | 358 |
|
360 |
| - $this->assertTrue($model->hasTag('test-tag')); |
361 |
| - $this->assertTrue($model->hasTag($tag->id)); |
362 |
| - $this->assertFalse($model->hasTag('non-existing-tag')); |
363 |
| - $this->assertFalse($model->hasTag($anotherTag->id)); |
| 359 | + expect($this->testModel->hasTag('test-tag'))->toBeTrue(); |
| 360 | + expect($this->testModel->hasTag($tag->id))->toBeTrue(); |
| 361 | + expect($this->testModel->hasTag('non-existing-tag'))->toBeFalse(); |
| 362 | + expect($this->testModel->hasTag($anotherTag->id))->toBeFalse(); |
364 | 363 | });
|
365 | 364 |
|
366 | 365 | it('can check if it has a tag with type', function () {
|
367 |
| - $model = TestModel::create(['name' => 'test model']); |
368 | 366 | $tag = Tag::findOrCreate('test-tag', 'type1');
|
369 | 367 | $sameNameDifferentType = Tag::findOrCreate('test-tag', 'type2');
|
370 | 368 |
|
371 |
| - $model->attachTag($tag); |
| 369 | + $this->testModel->attachTag($tag); |
372 | 370 |
|
373 |
| - $this->assertTrue($model->hasTag('test-tag', 'type1')); |
374 |
| - $this->assertFalse($model->hasTag('test-tag', 'type2')); |
| 371 | + expect($this->testModel->hasTag('test-tag', 'type1'))->toBeTrue(); |
| 372 | + expect($this->testModel->hasTag('test-tag', 'type2'))->toBeFalse(); |
375 | 373 | });
|
0 commit comments