We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f24458 commit 2f639a0Copy full SHA for 2f639a0
Cargo.toml
@@ -1,12 +1,12 @@
1
[package]
2
3
name = "conduit-test"
4
-version = "0.9.0-alpha.2"
+version = "0.9.0-alpha.3"
5
authors = ["[email protected]",
6
"Alex Crichton <[email protected]>"]
7
description = "Testing utilities for conduit-based stacks"
8
repository = "https://github.com/conduit-rust/conduit-test"
9
license = "MIT"
10
11
[dependencies]
12
-conduit = "0.9.0-alpha.2"
+conduit = "0.9.0-alpha.3"
src/lib.rs
@@ -117,6 +117,10 @@ impl conduit::RequestExt for MockRequest {
117
&self.path
118
}
119
120
+ fn path_mut(&mut self) -> &mut String {
121
+ &mut self.path
122
+ }
123
+
124
fn query_string(&self) -> Option<&str> {
125
self.query_string.as_ref().map(|s| &s[..])
126
0 commit comments