drupalCreateUser(['administer comments']); $this->drupalLogin($admin_account); $this->drupalGet('test-comment-operations'); $this->assertResponse(200); $operation = $this->cssSelect('.views-field-operations li.edit a'); $this->assertEqual(count($operation), 1, 'Found edit operation for comment.'); $operation = $this->cssSelect('.views-field-operations li.delete a'); $this->assertEqual(count($operation), 1, 'Found delete operation for comment.'); } }