(cls, region=None, name="lctn")
| 605 | # Location Data |
| 606 | @classmethod |
| 607 | def setup_location_data(cls, region=None, name="lctn"): |
| 608 | region = region or cls.setup_region_data(name="rgn for " + name) |
| 609 | |
| 610 | location = Location(name=name, region=region) |
| 611 | location.save() |
| 612 | |
| 613 | return location |
| 614 | |
| 615 | @classmethod |
| 616 | def setup_location_game_index_data(cls, location, game_index=0): |
no test coverage detected