kyu_7.jaden_casing_strings package

Submodules

kyu_7.jaden_casing_strings.jaden_casing_strings module

kyu_7.jaden_casing_strings.jaden_casing_strings.toJadenCase(string)[source]

Convert strings to how they would be written by Jaden Smith. The strings are actual quotes from Jaden Smith, but they are not capitalized in the same way he originally typed them.

Example:

Not Jaden-Cased:

“How can mirrors be real if our eyes aren’t real”

Jaden-Cased:

“How Can Mirrors Be Real If Our Eyes Aren’t Real”

Parameters

string

Returns

kyu_7.jaden_casing_strings.test_jaden_casing_strings module

class kyu_7.jaden_casing_strings.test_jaden_casing_strings.JadenCasingStringsTestCase(methodName='runTest')[source]

Bases: unittest.case.TestCase

Testing toJadenCase function

test_to_jaden_case_negative()[source]

Simple negative test :return:

test_to_jaden_case_positive()[source]

Simple positive test :return:

Module contents