Move History

Fork Selected
  • Code
    def дима_лох(): return 'w - h - y'
    Test Cases
    import codewars_test as test
    # TODO Write tests
    import solution # or from solution import example
    
    # test.assert_equals(actual, expected, [optional] message)
    @test.describe("Example")
    def test_group():
        @test.it("test case")
        def test_case():
            test.assert_equals(дима_лох(), 'w - h - y')
    
  • Code
    • def why():
    • return 'w - h - y'
    • def дима_лох(): return 'w - h - y'
    Test Cases
    • import codewars_test as test
    • # TODO Write tests
    • import solution # or from solution import example
    • # test.assert_equals(actual, expected, [optional] message)
    • @test.describe("Example")
    • def test_group():
    • @test.it("test case")
    • def test_case():
    • test.assert_equals(why(), 'w - h - y')
    • test.assert_equals(дима_лох(), 'w - h - y')