moto/tests/test_swf/test_utils.py

14 lines
283 B
Python
Raw Normal View History

import sure # noqa
from moto.swf.utils import decapitalize
def test_decapitalize():
cases = {
"fooBar": "fooBar",
"FooBar": "fooBar",
"FOO BAR": "fOO BAR",
}
for before, after in cases.items():
decapitalize(before).should.equal(after)