ベスパリブ

プログラミングを主とした日記・備忘録です。ベスパ持ってないです。

pytest

「テスト駆動Python」写経 CHAPTER1

www.amazon.co.jp 1 はじめてのpytest pytestを使ったテスト駆動開発についての本です。 pytestを実行する test_one.py def test_passing(): assert (1, 2, 3) == (1, 2, 3) テストを実行します。 $ pytest test_one.py ===================================…