mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			180 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			180 B
		
	
	
	
		
			Python
		
	
	
	
	
	
#!/usr/bin/env python
 | 
						|
# coding: utf-8
 | 
						|
#
 | 
						|
#
 | 
						|
 | 
						|
import requests
 | 
						|
 | 
						|
HOST = 'http://localhost:3000'
 | 
						|
 | 
						|
def test_index_get():
 | 
						|
    r = requests.get(HOST + '/')
 | 
						|
    assert r.status_code == 200
 | 
						|
 |