diff options
author | aelita-mergebot <michaelhowell932+aelita@gmail.com> | 2016-09-22 05:34:33 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-22 05:34:33 -0700 |
commit | 87e0352ead8383631428778f6384c2ae426e36b6 (patch) | |
tree | 097ced828c7034f9aa9c44ce11cbb175a36d2e60 /tests/test_serialize.rs | |
parent | c75cccbb0395060a1e2c11272a64e9fb09697cc0 (diff) | |
parent | f553c4e08f11c18ef03fdacfcfaaea4771a13b4e (diff) |
Add support for boolean values
Merge #5 a=@mre r=@nox
________________________________________________________________________
Diffstat (limited to 'tests/test_serialize.rs')
-rw-r--r-- | tests/test_serialize.rs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/test_serialize.rs b/tests/test_serialize.rs index 20592fc..b401ef9 100644 --- a/tests/test_serialize.rs +++ b/tests/test_serialize.rs @@ -25,3 +25,27 @@ fn serialize_option_map_string() { serde_urlencoded::to_string(params), Ok("first=hello&last=world".to_owned())); } + +#[test] +fn serialize_option_map_bool() { + let params = &[ + ("one", Some(true)), + ("two", Some(false)) + ]; + + assert_eq!( + serde_urlencoded::to_string(params), + Ok("one=true&two=false".to_owned())); +} + +#[test] +fn serialize_map_bool() { + let params = &[ + ("one", true), + ("two", false) + ]; + + assert_eq!( + serde_urlencoded::to_string(params), + Ok("one=true&two=false".to_owned())); +} |