Closed (fixed)
Project:
SimpleTest
Version:
6.x-2.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
19 Nov 2008 at 14:40 UTC
Updated:
22 Feb 2009 at 04:10 UTC
Hallo,
I have problems when I let simpletest create a content type and want to go to its admin page afterwards:
function testContentType() {
// Create admin user
$admin_user = $this->drupalCreateUser(array('access content', 'administer content types', 'administer nodes', 'access administration pages'));
$this->drupalLogin($admin_user);
// Create test content type
$content_type = $this->drupalCreateContentType();
// Go to admin page of it
$content_type_url = str_replace('_', '-', $content_type->type);
$this->drupalGet('admin/content/node-type/'. $content_type_url);
$this->assertText($content_type->name, 'content type name ('. $content_type->name .') is present on page');
}
This small test fails, the simpletest browser does not fetch the specific content type page but the general content management page (admin/content). Is this intended behavior or is this a bug? Am I doing something wrong?
I have attached the simpletest file to reproduce this failure, just copy it to the "tests" subfolder in your simpletest module directory and it will apear on the Testing page in the group Simpletest.
| Comment | File | Size | Author |
|---|---|---|---|
| content_type.test | 1.09 KB | klausi |
Comments
Comment #1
hass commentedSound also like http://drupal.org/node/334554#comment-1116879
Comment #2
boombatower commentedComplete backport of Drupal 7.x SimpleTest module. (voids all backports). (SimpleTest 2.6)
Please re-open if still an issue.