DumpTest.php 366 B

1234567891011121314151617181920
  1. <?php
  2. namespace League\CLImate\Tests;
  3. require_once 'VarDumpMock.php';
  4. class DumpTest extends TestBase
  5. {
  6. /**
  7. * @test
  8. * @doesNotPerformAssertions
  9. */
  10. public function it_can_dump_a_variable()
  11. {
  12. $this->shouldWrite("\e[mDUMPED: This thing\e[0m");
  13. $this->shouldHavePersisted();
  14. $this->cli->dump('This thing');
  15. }
  16. }