(cls, baby_trigger_item=None)
| 1815 | |
| 1816 | @classmethod |
| 1817 | def setup_evolution_chain_data(cls, baby_trigger_item=None): |
| 1818 | evolution_chain = EvolutionChain.objects.create( |
| 1819 | baby_trigger_item=baby_trigger_item, |
| 1820 | ) |
| 1821 | evolution_chain.save() |
| 1822 | |
| 1823 | return evolution_chain |
| 1824 | |
| 1825 | @classmethod |
| 1826 | def setup_pokemon_evolution_data( |
no outgoing calls
no test coverage detected