This question already has an answer here:
- How to choose proper variable names for long names in python 1 answer
What is the PEP8 correct way for long method's name? I have a unit test with a self-describing method:
def success_if_buying_price_item_when_participating_and_progression_is_100_percent(self):
But unfortunately this (too long?) method reaches the 80 characters line limit.
Should I rename it and add a description in code or there is an other way?