diff options
author | Christian Schneider | 2019-09-02 17:16:47 +0200 |
---|---|---|
committer | Christian Schneider | 2019-09-02 17:16:47 +0200 |
commit | deb0c4093407b694e847862c6447a501beaaa018 (patch) | |
tree | 8295c9c0b72fd40ad9b33db3cce38986f395c81a /test/it.t | |
parent | 2b13737e9299317c865f72f4a276ea0b733c4f5f (diff) | |
download | itools-deb0c4093407b694e847862c6447a501beaaa018.tar.gz itools-deb0c4093407b694e847862c6447a501beaaa018.tar.bz2 itools-deb0c4093407b694e847862c6447a501beaaa018.zip |
Use older syntax for tests
Diffstat (limited to 'test/it.t')
-rwxr-xr-x | test/it.t | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -445,7 +445,8 @@ is(it::map('5*$k+$v', array(0 => 1, 1 => 2)), array(1, 7)); is(it::map(function($k, $v) {return 5*$k+$v;}, array(0 => 1, 1 => 2)), array(1, 7)); is(it::map('strlen', array("aaa", "aa")), array(3, 2)); is(it::map('it::ucfirst', array("aaa")), array("Aaa")); -($dom = new DOMDocument)->loadXML('<foo>42</foo>'); +$dom = new DOMDocument; +$dom->loadXML('<foo>42</foo>'); is(it::map('$v->C14N()', $dom->childNodes), [ '<foo>42</foo>' ], "Traversable: Needs copy, not modifiable in-place"); # Special values which are not callable is(it::map('null', array("aaa", "aa")), array(null, null)); |