示例#1
0
 public function testアイテムからタグを取り除けること()
 {
     $this->apiMock->shouldReceive('deleteItemsItemIdTagginsTaggingId')->andReturn(true);
     $item = new Item(['id' => 'abcdefghijklmnopq123']);
     $result = $item->removeTag('raid');
     $this->assertTrue($result, 'タグが取り除けた');
 }