 81411a191c
			
		
	
	81411a191c
	
	
	
		
			
			Random Visit Locking wasn't copying correctly init cleanup and moved itempool population to create_items Updated docs due to a lot of people having issues setting it up.
		
			
				
	
	
		
			31 lines
		
	
	
		
			605 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			605 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from . import KH2TestBase
 | |
| from ..Names import ItemName
 | |
| 
 | |
| 
 | |
| class TestDefault(KH2TestBase):
 | |
|     options = {}
 | |
| 
 | |
|     def testEverything(self):
 | |
|         self.collect_all_but([ItemName.Victory])
 | |
|         self.assertBeatable(True)
 | |
| 
 | |
| 
 | |
| class TestLuckyEmblem(KH2TestBase):
 | |
|     options = {
 | |
|         "Goal": 1,
 | |
|     }
 | |
| 
 | |
|     def testEverything(self):
 | |
|         self.collect_all_but([ItemName.LuckyEmblem])
 | |
|         self.assertBeatable(True)
 | |
| 
 | |
| 
 | |
| class TestHitList(KH2TestBase):
 | |
|     options = {
 | |
|         "Goal": 2,
 | |
|     }
 | |
| 
 | |
|     def testEverything(self):
 | |
|         self.collect_all_but([ItemName.Bounty])
 | |
|         self.assertBeatable(True)
 |