Source code for tests.test_lw
"""
test lw multiply function
"""
import pytest
from lw import multiply
# Run the actual multiply test
# Check for text input
[docs]def test_multiply_value_err():
    """
    Verify string input fails
    """
    with pytest.raises(TypeError):
        multiply("two", "three")