tarantool / nginx_upstream_module

Tarantool NginX upstream module (REST, JSON API, websockets, load balancing)
Other
174 stars 18 forks source link

Test coverage for escaped characters #52

Closed Sulverus closed 8 years ago

Sulverus commented 8 years ago

Need to implement test coverage for character escaping. Example:

#put
{
    "method": "insert",
    "params":[{
        "uid":79031234567,
        "date":201607251753,
        "text":"\"201607251753\""
     }]
}

After insert:

#get
{
  "date": 201607251753,
  "uid": 79031234567,
  "text": ""201607251753""
 }

Please add this test case and check yajl