Skip to content

Commit

Permalink
Fix missing closing tag on lazy-encoders.feature
Browse files Browse the repository at this point in the history
It didn't break anything, but definitely doesn't look good.
  • Loading branch information
antifuchs committed Sep 9, 2012
1 parent 4678ba3 commit 3b5b265
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions features/lazy_encoders.feature
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
Feature: Lazy XML-RPC encoders

As a client of a shoddy xml-rpc encoder,
I want to be able to read their requests and responses correctly,
As a client of a shoddy xml-rpc encoder,
I want to be able to read their requests and responses correctly,
so that I can communicate with them.


Scenario: Implicit <string> types in <values>

Given the following method response:
"""
<methodResponse><params><param><value>987lkjasd</value></param></params>
<methodResponse><params><param><value>987lkjasd</value></param></params></methodResponse>
"""
When I decode the method response
Then the first value should be "987lkjasd"
Expand All @@ -21,10 +21,10 @@ Scenario: Implicit <string> types in <values> starting with whitespace
"""
<methodResponse><params><param><value>
987lkjasd
</value></param></params>
</value></param></params></methodResponse>
"""
When I decode the method response
Then the first value should be:
Then the first value should be:
"""
987lkjasd
Expand All @@ -36,7 +36,7 @@ Scenario: Implicit <string> type starting with an XML entity

Given the following method response:
"""
<methodResponse><params><param><value>&#32;987lkjasd</value></param></params>
<methodResponse><params><param><value>&#32;987lkjasd</value></param></params></methodResponse>
"""
When I decode the method response
Then the first value should be " 987lkjasd"
Expand All @@ -48,7 +48,7 @@ Scenario: Indented, explicit type tags
"""
<methodResponse><params><param><value>
<string>987lkjasd</string>
</value></param></params>
</value></param></params></methodResponse>
"""
When I decode the method response
Then the first value should be "987lkjasd"

0 comments on commit 3b5b265

Please sign in to comment.