I have two functions with long names:
# ruby
def test_write_method_raises_value_error
# python
def test_write_method_raises_value_error(self):
In ruby I can rename
the function as follows:
test 'write method should raise value error' do
# rest of function
Is there a comparable construct in Python?