12 lines
		
	
	
		
			229 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			229 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| class HomeTest extends ShimmieWebTestCase {
 | |
|     function testHomePage() {
 | |
|         $this->get_page('home');
 | |
|         $this->assertTitle('Shimmie');
 | |
|         $this->assertText('Shimmie');
 | |
| 
 | |
| 		# FIXME: test search box
 | |
|     }
 | |
| }
 | |
| ?>
 |