13 lines
		
	
	
		
			345 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			345 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
class Handle404Test extends ShimmiePHPUnitTestCase
 | 
						|
{
 | 
						|
    public function test404Handler()
 | 
						|
    {
 | 
						|
        $this->get_page('not/a/page');
 | 
						|
        // most descriptive error first
 | 
						|
        $this->assert_text("No handler could be found for the page 'not/a/page'");
 | 
						|
        $this->assert_title('404');
 | 
						|
        $this->assert_response(404);
 | 
						|
    }
 | 
						|
}
 |