mirror of
				https://github.com/bspeice/metrik
				synced 2025-10-29 16:35:32 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			249 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			249 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from unittest import TestCase
 | |
| 
 | |
| from metrik.tasks.cboe import CboeOptionableList
 | |
| 
 | |
| 
 | |
| class CboeTest(TestCase):
 | |
| 
 | |
|     def test_optionable_list(self):
 | |
|         companies = CboeOptionableList.retrieve_data()['companies']
 | |
|         assert len(companies) > 2000 | 
