| 1 |
<?php |
<?php |
| 2 |
// $Id: pathauto.test,v 1.3 2008/06/22 15:20:45 freso Exp $ |
// $Id: pathauto.test,v 1.4 2009/05/02 20:06:57 freso Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file |
* @file |
| 66 |
// Create node for testing. |
// Create node for testing. |
| 67 |
$random_title = $this->randomName(10); // this contains _ |
$random_title = $this->randomName(10); // this contains _ |
| 68 |
$expected_alias = 'content/simpletest-title-'. strtolower($random_title); |
$expected_alias = 'content/simpletest-title-'. strtolower($random_title); |
| 69 |
|
// Extra characters at the beginning and end of the title tests that extra separator characters are removed. |
| 70 |
$edit = array( |
$edit = array( |
| 71 |
'title' => 'Simpletest title '. $random_title, |
'title' => ' Simpletest title '. $random_title .' [', |
| 72 |
'body' => 'Simpletest body '. $this->randomName(10), |
'body' => 'Simpletest body '. $this->randomName(10), |
| 73 |
); |
); |
| 74 |
|
|