pytest
All in all, write code that is:
And you will have understandable, maintainable, and trustable code.
Given the following code, which assert will fail?
def extend(input_arg):
output = input_arg.copy()
for element in input_arg:
output.append(element)
return output
# test here
assert type(extend([1, 2])) == list
assert extend([1, 2]) == [1, 2, 1, 2]
assert extend((1, 2)) == (1, 2, 1, 2)
assert extend(['a', 'b', 'c']) == ['a', 'b', 'c', 'a', 'b', 'c']
assert extend([]) == []
# Check that extend returns a list
assert type(extend([1, 2])) == list
# Check that an input list returns the expected result
assert extend([1, 2]) == [1, 2, 1, 2]
# Check if the function works on tuples
assert extend((1, 2)) == (1, 2, 1, 2)
# Check that a different input list (different lengths / contents) returns expected result
assert extend(['a', 'b', 'c']) == ['a', 'b', 'c', 'a', 'b', 'c']
# Check that an empty list executes, executing an empty list
assert extend([]) == []
test_
assert
s - make a statement of fact about codeTests, when run, help identify code that will give an error if something has gone wrong.
Whenever you write new code, you will find yourself using little snippets of code to check it.
Collect these snippets into a test function, and you get re-runnable tests for free.
Given a function or class you want to test:
assert
to check that your example cases do run as expectedWhat function should do: add two inputs together
# import math
def test_add():
"""Tests for the `add` function."""
# Test adding positve numbers
assert add(2, 2) == 4
# Test adding negative numbers
assert add(-2, -2) == -4
# Test adding floats
assert add(2.7, 1.2) == 3.9
# assert math.isclose(add(2.7, 1.2), 3.9)
# Test adding with 0
assert add(2, 0) == 2
def add(num1, num2):
return num1 + num2
# Run our test function
test_add()
If you were asked to write a function remove_punctuation
that removed all the punctuation from a given input string...what are some things that would be True
of the output of that function?
Brainstorm here...
# assert statements here
# test function here
# function here
# Given the following function:
def divide_list(in_list):
output = []
for el1, el2 in zip(in_list[1:], in_list[0:-1]):
output.append(el1 / el2)
return output
# And the following test function:
def test_divide_list():
assert type(divide_list([1, 2])) == list
assert divide_list([1, 2, 4]) == [2, 2]
test_divide_list()
divide_list((0,2,3))
Write a test function that checks the following piece of code:
def sum_list(input_list):
"""add all values in a list - return sum"""
output = 0
for val in input_list:
output += val
return output
Thought process:
def test_...
assert
ion within the test function### YOUR TEST
test_sum_list()
### POSSIBLE TEST
def test_sum_list():
# write multiple asserts
assert callable(sum_list)
assert type(sum_list([1, 2, 3, 4])) == int
assert sum_list([1, 2, 3, 4]) == 10
test_sum_list()
input()
is used¶def get_input():
"""ask user for an input message
Returns
-------
msg : str
text specified on input by user
out_msg : None
always returns None; subsequent functions would return a more specific out_msg
"""
msg = input('INPUT :\t')
out_msg = None
return msg, out_msg
get_input()
import mock
import builtins
def test_get_input():
# specify after lambda what you want function to use as "input"
with mock.patch.object(builtins, 'input', lambda _: 'Hello'):
# execute function and specify something that asserts True
msg, out_msg = get_input()
assert msg == 'Hello'
assert out_msg == None
test_get_input()
print
statements as its output, it will *not* be testable. Consider this during development/planning!