Commit 60cf72b 1 parent 1061720 commit 60cf72b Copy full SHA for 60cf72b
File tree 3 files changed +6
-5
lines changed
3 files changed +6
-5
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" ,
79
79
"Programming Language :: Python :: Implementation :: PyPy" ,
80
80
"Topic :: Software Development :: Testing" ,
81
81
],
82
- python_requires = ">=3.8 " ,
82
+ python_requires = ">=3.9 " ,
83
83
install_requires = install_dependencies ,
84
84
tests_require = test_dependencies ,
85
85
extras_require = extras ,
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