mirror of
				https://github.com/autistic-symposium/web3-starter-py.git
				synced 2025-10-30 22:48:52 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			206 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			206 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # -*- coding: utf-8 -*-
 | |
| 
 | |
| import unittest
 | |
| 
 | |
| 
 | |
| class TestMyFunction(unittest.TestCase):
 | |
| 
 | |
|     def setUp(self):
 | |
|         pass
 | |
| 
 | |
|     def test_one(self):
 | |
|         pass
 | |
| 
 | |
| 
 | |
| if __name__ == '__main__':
 | |
|     unittest.main()
 | 
