Commit 6d3b7dc 1 parent 1061720 commit 6d3b7dc Copy full SHA for 6d3b7dc
File tree 3 files changed +5
-4
lines changed
3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
- ## 2.13.2
3
+ ## 2.14
4
4
5
- * Enhancement - add form to Predicate.
6
- * Fix - added the ` imurl ` package to dependencies
5
+ * Enhancement - add form to Predicate. (Thanks [ @kwist-sgr ] ( https://github.com/kwist-sgr ) .)
7
6
8
7
## 2.13.1
9
8
Original file line number Diff line number Diff line change 53
53
setup (
54
54
name = "mbtest" ,
55
55
zip_safe = False ,
56
- version = "2.13.2 " ,
56
+ version = "2.14.0 " ,
57
57
description = "Python wrapper & utils for the Mountebank over the wire test double tool." ,
58
58
long_description = long_description ,
59
59
long_description_content_type = "text/markdown" ,
Original file line number Diff line number Diff line change @@ -39,6 +39,8 @@ class PredicateBuilder(Builder):
39
39
body = lambda : one_of (None , a_string ())
40
40
headers = lambda : one_of (None , {a_string (): a_string ()})
41
41
xpath = lambda : one_of (None , a_string ())
42
+ jsonpath = lambda : one_of (None , a_string ())
43
+ form = lambda : one_of (None , {a_string (): a_string ()})
42
44
operator = lambda : one_of (* list (Predicate .Operator ))
43
45
case_sensitive = a_boolean
44
46
You can’t perform that action at this time.
0 commit comments