diff options
author | Tulio Casagrande <tcasagra@thoughtworks.com> | 2016-09-06 17:33:17 -0300 |
---|---|---|
committer | Bruno Wagner <bwagner@riseup.net> | 2016-09-08 14:09:26 -0300 |
commit | 9237868a1c71bf68d797c2d4b1982628c3805648 (patch) | |
tree | 29bfa9a59e57678bd9eb275b4e3587e80ef9b3fc | |
parent | 33901d27dafeb10b1eceafaf2ff2fbe3c76597ee (diff) |
Update mock library to 2.0.0
We were using an old version of the python's mock library, which lacks
new features such as assert_called() and assert_not_called() that I
found handy to test #778
-rw-r--r-- | service/test_requirements.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/test_requirements.txt b/service/test_requirements.txt index f2048876..80e4565f 100644 --- a/service/test_requirements.txt +++ b/service/test_requirements.txt @@ -1,6 +1,6 @@ behave==1.2.4 selenium==2.44.0 -mock==1.0.1 +mock==2.0.0 httmock==1.2.2 mockito==0.5.2 funkload==1.16.1 |