diff --git a/core/modules/views/src/Tests/NewViewConfigSchemaTest.php b/core/modules/views/src/Tests/NewViewConfigSchemaTest.php new file mode 100644 index 0000000..aae9970 --- /dev/null +++ b/core/modules/views/src/Tests/NewViewConfigSchemaTest.php @@ -0,0 +1,48 @@ +drupalLogin($this->drupalCreateUser(array('administer views'))); + + // Create a new view in the UI. + $edit = array(); + $edit['label'] = $this->randomString(); + $edit['id'] = strtolower($this->randomMachineName()); + $edit['show[wizard_key]'] = 'node'; + $edit['description'] = $this->randomString(); + $this->drupalPostForm('admin/structure/views/add', $edit, t('Save and edit')); + } + +}