diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/it_pipe.t | 21 |
1 files changed, 7 insertions, 14 deletions
diff --git a/tests/it_pipe.t b/tests/it_pipe.t index 56ee672..e8fa4e8 100755 --- a/tests/it_pipe.t +++ b/tests/it_pipe.t @@ -2,17 +2,10 @@ <?php # csv() -$pipe = new it_pipe(array('data' => array("a\tb", "1\t2"))); -is(json_encode($pipe->csv()), '[{"a":"1","b":"2"}]', "it_pipe::csv()"); - -$pipe = new it_pipe(array('data' => array("a;b", "1;2"))); -is(json_encode($pipe->csv()), '[{"a":"1","b":"2"}]', "it_pipe::csv()"); - -$pipe = new it_pipe(array('data' => array("a,b", "1,2"))); -is(json_encode($pipe->csv()), '[{"a":"1","b":"2"}]', "it_pipe::csv()"); - -$pipe = new it_pipe(array('data' => array("a\tb", "1\t2"))); -is(json_encode($pipe->csv("c,d")), '[{"c":"1","d":"2"}]', "it_pipe::csv()"); - -$pipe = new it_pipe(array('data' => array("\t", "1\t2"))); -is(json_encode($pipe->csv()), '[{"field0":"1","field1":"2"}]', "it_pipe::csv()"); +is(json_encode((new it_pipe(['data' => ["a\tb", "1\t2"]]))->csv()), '[{"a":"1","b":"2"}]'); +is(json_encode((new it_pipe(['data' => ["a;b", "1;2"]]))->csv()), '[{"a":"1","b":"2"}]'); +is(json_encode((new it_pipe(['data' => ["a,b", "1,2"]]))->csv()), '[{"a":"1","b":"2"}]'); +is(json_encode((new it_pipe(['data' => ["\t", "1\t2"]]))->csv()), '[{"field0":"1","field1":"2"}]'); +is(json_encode((new it_pipe(['data' => ["a\tb", "1\t2"]]))->csv("c,d")), '[{"c":"1","d":"2"}]'); +is(json_encode((new it_pipe(['data' => ["a\tb", "1\t2"]]))->csv(['forceschema' => "c,d"])), '[{"c":"1","d":"2"}]'); +is(json_encode((new it_pipe(['data' => ["a b\tb", "1\t2"]]))->csv(['fixcolnames' => true])), '[{"a_b":"1","b":"2"}]'); |