import codewars_test as test # TODO Write tests from solution import multiply # test.assert_equals(actual, expected, [optional] message) @test.describe("Example") def test_group(): @test.it("test case") def test_case(): test.assert_equals(multiply(2, 4), 8) from operator import mul as multiply
- import codewars_test as test
- # TODO Write tests
- from solution import multiply
- # test.assert_equals(actual, expected, [optional] message)
- @test.describe("Example")
- def test_group():
- @test.it("test case")
- def test_case():
- test.assert_equals(multiply(2, 4), 8)
- from operator import mul as multiply