14 lines
283 B
Python
14 lines
283 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)
|