Python テストのメモ
目次
testfixtures
date と datetime を mock できる
https://testfixtures.readthedocs.io/en/latest/api.html#testfixtures.test_date
-
https://testfixtures.readthedocs.io/en/latest/api.html#testfixtures.test_datetime
test_datetime
は、datetime.datetime.now()
にしか効果を及ぼさないので注意!!datetime.datetime.today()
には何の効果もない
※近頃は、freezegun を使うほうが便利でしょう
flake8 3.6 対応がわかりやすい
https://scrapbox.io/shimizukawa/flake8-3.6.0_に更新したら警告たくさん出てきた
あれこれ
TestPyramid
UI 寄りのテストは、コストと実行時間が長くなってしまうので、いきなり書かない方がいい