-
Notifications
You must be signed in to change notification settings - Fork 166
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix invalid JSON format for ${aspnet-request-cookie} and ${aspnet-request-querystring}, added extra formatting options, consistent rendering of multiple values #132
Conversation
9ff2e1d
to
ed3ef5e
Compare
Codecov Report
@@ Coverage Diff @@
## master #132 +/- ##
==========================================
+ Coverage 59.03% 62.68% +3.64%
==========================================
Files 25 26 +1
Lines 310 343 +33
Branches 77 82 +5
==========================================
+ Hits 183 215 +32
Misses 91 91
- Partials 36 37 +1
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
todo
@@ -98,7 +98,7 @@ public void KeyFoundRendersValue_QueryString_Single_Item_Json_Formatting() | |||
[Fact] | |||
public void KeyFoundRendersValue_QueryString_Multiple_Item_Flat_Formatting() | |||
{ | |||
var expectedResult = "Id:1," + Environment.NewLine + "Id2:2"; | |||
var expectedResult = "Id=1,Id2=2"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
todo
@@ -113,7 +113,7 @@ public void KeyFoundRendersValue_QueryString_Multiple_Item_Flat_Formatting() | |||
[Fact] | |||
public void EmptyProperyShouldListAll() | |||
{ | |||
var expectedResult = "Id:1," + Environment.NewLine + "Id2:2"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
todo
96910f1
to
32be01d
Compare
No breaking changes in config, but change in output of multiple values. It's now consistent and configurable.
fixes #119
todo:
:
or=
-> option