summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket653TestCase.php
blob: c25eb25f7d80c9448a99d4759d5f56032a63045f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

class Ticket653TestCase extends SeleniumTestCase
{
	function test()
	{
		// Open with 'Friendly URL'
		$this->open('tickets/index.php/ticket653');
		$this->verifyTitle("Verifying Ticket 653", "");

		$this->assertText('textspan', 'This is the page for Ticket653');
	}
}

?>