コード例 #1
0
ファイル: test_numerical.py プロジェクト: tetrascience/OSS
def test_subtract_exception(minuend, subtrahend):
    with pytest.raises(TypeError):
        _.subtract(minuend, subtrahend)
コード例 #2
0
ファイル: test_numerical.py プロジェクト: dgilland/pydash
def test_subtract_exception(minuend, subtrahend):
    with pytest.raises(TypeError):
        _.subtract(minuend, subtrahend)
コード例 #3
0
ファイル: test_numerical.py プロジェクト: tetrascience/OSS
def test_subtract(minuend, subtrahend, expected):
    assert _.subtract(minuend, subtrahend) == expected
コード例 #4
0
ファイル: test_numerical.py プロジェクト: dgilland/pydash
def test_subtract(minuend, subtrahend, expected):
    assert _.subtract(minuend, subtrahend) == expected