"Cell 1", "cell2" => "Cell 2", "cell3" => "Cell 3", "cell4" => "Cell 4", ], \JSON_PRETTY_PRINT); $this->shouldWrite("\e[m{$json}\e[0m"); $this->shouldHavePersisted(); $this->cli->json((object) [ "cell1" => "Cell 1", "cell2" => "Cell 2", "cell3" => "Cell 3", "cell4" => "Cell 4", ]); } /** * We do this test specifically because json escapes the tags, * we want to make sure we"re taking care of that * * @test */ public function it_can_output_json_with_tags() { $json = json_encode((object) [ "cell1" => "Cell 1", "cell2" => "Cell 2", "cell3" => "Cell 3", "cell4" => "Cell 4", ], \JSON_PRETTY_PRINT); $json = str_replace("Cell 4", "\e[5mCell 4\e[0m", $json); $this->shouldWrite("\e[m{$json}\e[0m"); $this->shouldHavePersisted(); $this->cli->json((object) [ "cell1" => "Cell 1", "cell2" => "Cell 2", "cell3" => "Cell 3", "cell4" => "Cell 4", ]); } public function test_we_dont_escape_slashes() { $this->shouldWrite("\e[m{\n \"package\": \"league/climate\"\n}\e[0m"); $this->shouldHavePersisted(); $this->cli->json(["package" => "league/climate"]); } }