kyu_7.make_class package

Submodules

kyu_7.make_class.animal module

Animal class implementation for -> Make Class.

Created by Egor Kostan. GitHub: https://github.com/ikostan

class kyu_7.make_class.animal.Animal(**kwargs)[source]

Bases: object

Animal class implementation.

_age: str
_color: str
_health: str
_name: str
_species: str
_weight: str
property age: str

Get age.

Returns:

str

property color: str

Get color.

Returns:

str

property health: str

Get health.

Returns:

str

property name: str

Get name.

Returns:

str

property species: str

Get species.

Returns:

str

property weight: str

Get weight.

Returns:

str

kyu_7.make_class.make_class module

make_class function implementation for -> Make Class.

Created by Egor Kostan. GitHub: https://github.com/ikostan

kyu_7.make_class.make_class.make_class(*args)[source]

‘make_class’ function.

Parameters:

args

Returns:

kyu_7.make_class.test_make_class module

Test for -> Make Class.

Created by Egor Kostan. GitHub: https://github.com/ikostan

class kyu_7.make_class.test_make_class.MakeClassTestCase(methodName='runTest')[source]

Bases: TestCase

Testing make_class function.

_classSetupFailed = False
_class_cleanups = []
test_make_class()[source]

Testing make_class function.

Returns:

Module contents

Make Class.