11 lines
		
	
	
		
			258 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			258 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| class Handle404Test extends SCoreWebTestCase {
 | |
| 	function test404Handler() {
 | |
| 		$this->get_page('not/a/page');
 | |
| 		$this->assertResponse(404);
 | |
| 		$this->assertTitle('404');
 | |
| 		$this->assertText("No handler could be found for the page 'not/a/page'");
 | |
| 	}
 | |
| }
 | |
| ?>
 |