(
cls, move_learn_method, description="mv lrn mthd desc"
)
| 878 | |
| 879 | @classmethod |
| 880 | def setup_move_learn_method_description_data( |
| 881 | cls, move_learn_method, description="mv lrn mthd desc" |
| 882 | ): |
| 883 | language = cls.setup_language_data(name="lang for " + description) |
| 884 | |
| 885 | move_learn_method_description = MoveLearnMethodDescription.objects.create( |
| 886 | move_learn_method=move_learn_method, |
| 887 | language=language, |
| 888 | description=description, |
| 889 | ) |
| 890 | move_learn_method_description.save() |
| 891 | |
| 892 | return move_learn_method_description |
| 893 | |
| 894 | @classmethod |
| 895 | def setup_move_target_data(cls, name="mv trgt"): |
no test coverage detected