git-svn-id: file:///home/shish/svn/shimmie2/trunk@1096 7f39781d-f577-437e-ae19-be835c7a54ca
		
			
				
	
	
		
			12 lines
		
	
	
		
			266 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			266 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
class CommentListTest extends WebTestCase {
 | 
						|
	function testCommentsPage() {
 | 
						|
        $this->get(TEST_BASE.'/comment/list');
 | 
						|
        $this->assertTitle('Comments');
 | 
						|
 | 
						|
        $this->get(TEST_BASE.'/comment/list/2');
 | 
						|
        $this->assertTitle('Comments');
 | 
						|
	}
 | 
						|
}
 | 
						|
?>
 |