public function DataTestCaseUI::testCRUDTable in Data 7
Same name and namespace in other branches
- 6 data_ui/tests/data_ui.test \DataTestCaseUI::testCRUDTable()
CRUD table tests on UI.
File
- data_ui/
tests/ data_ui.test, line 43
Class
- DataTestCaseUI
- Test basic Data API functionality.
Code
public function testCRUDTable() {
$table_name = $this
->createTable(5);
// @todo: edit table.
$this
->drupalGet('admin/build/data/export/' . $table_name);
$this
->dropTable($table_name);
}