1 taxonomy_views_handler_relationship_node_term_data.test | TaxonomyViewsHandlerRelationshipNodeTermDataTest::testViewsHandlerRelationshipNodeTermData() |
File
- core/
modules/ taxonomy/ tests/ taxonomy_views_handler_relationship_node_term_data.test, line 60 - Definition of ViewsHandlerRelationshipNodeTermDataTest.
Class
- TaxonomyViewsHandlerRelationshipNodeTermDataTest
- Tests the relationship_node_term_data handler.
Code
function testViewsHandlerRelationshipNodeTermData() {
$view = $this->view_taxonomy_node_term_data();
$this->executeView($view, array($this->term_1->tid, $this->term_2->tid));
$resultset = array(
array(
'nid' => $this->node->nid,
),
);
$column_map = array('nid' => 'nid');
$this->assertIdenticalResultset($view, $resultset, $column_map);
}