Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Does everything work in your Pycharm when you run your function more than once?
And also
4 should == "IV": 'MIV' should equal 'IV'
1 should == "I": 'MIVI' should equal 'I'
but in my Pycharm everything compiles fine and hase no leading 'M'
When using Python class and declaring methods with class scope, you need add @classmethod above the method declaration and add 'cls' to the beginning of method signature. Also remember to put the class name before all the class variables that used inside the given method
@classmethod
def from_roman(cls, roman)
These tests are failing for no known reason.
test.assert_equals(RomanNumerals.to_roman(1990), "MCMXC", '1990 should == "MCMXC"')
test.assert_equals(RomanNumerals.from_roman(RomanNumerals.to_roman(1990)), 1990, '1990 should == 1990')
I am unable to see and check the test suite that performs test on the code.
FYI