summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket653TestCase.php
blob: d4a05fd87c1fe8f4979c9f1f8028fddf6dc2e681 (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');
	}
}

?>