test empty object

This commit is contained in:
Leo Horie 2016-05-24 23:18:11 -04:00
parent eb25faf8af
commit 5815a590a8
2 changed files with 5 additions and 1 deletions

View file

@ -139,7 +139,7 @@ m(ComponentUsingThis, {text: "Hello"})
// <div>Hello</div>
```
Be aware that when using ES5 functions, the value of `this` in nested anonymous functions is not the component instance. There are two recommended ways to get around this Javascript limitation, use ES6 arrow functions, if ES6 is not available, use `vnode.state`.
Be aware that when using ES5 functions, the value of `this` in nested anonymous functions is not the component instance. There are two recommended ways to get around this Javascript limitation, use ES6 arrow functions, or if ES6 is not available, use `vnode.state`.
---

View file

@ -8,6 +8,10 @@ o.spec("parseQueryString", function() {
var data = parseQueryString("?aaa=bbb")
o(data).deepEquals({aaa: "bbb"})
})
o("parses empty string", function() {
var data = parseQueryString("")
o(data).deepEquals({})
})
o("parses flat object", function() {
var data = parseQueryString("?a=b&c=d")
o(data).deepEquals({a: "b", c: "d"})