From 49a768595c10fdaff6d0860756f55eea6cce6a35 Mon Sep 17 00:00:00 2001 From: ASPP Student Date: Tue, 23 Sep 2025 16:10:10 +0300 Subject: [PATCH] add test functions with wrong results to see how it breaks --- hands_on/first/test_first.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/hands_on/first/test_first.py b/hands_on/first/test_first.py index 5ac7354..682eaa6 100644 --- a/hands_on/first/test_first.py +++ b/hands_on/first/test_first.py @@ -1,6 +1,14 @@ +from first import times_3 + def test_times_3_integer(): - pass + value = 5 + expected = 150 + result = times_3(value) + assert result == expected def test_times_3_string(): - pass + value = 'yupi' + expected = 'yupiyupiyupiyu' + result = times_3(value) + assert result == expected