10 lines
252 B
Python
10 lines
252 B
Python
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)
|