| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?php
- namespace Tools\Test\TestCase\Shell;
- use Cake\Console\ConsoleIo;
- use Tools\TestSuite\ConsoleOutput;
- use Tools\TestSuite\TestCase;
- /**
- */
- class InflectShellTest extends TestCase {
- /**
- * setUp method
- *
- * @return void
- */
- public function setUp() {
- parent::setUp();
- $this->out = new ConsoleOutput();
- $this->err = new ConsoleOutput();
- $io = new ConsoleIo($this->out, $this->err);
- $this->Shell = $this->getMock(
- 'Tools\Shell\InflectShell',
- ['in', '_stop'],
- [$io]
- );
- }
- /**
- * tearDown
- *
- * @return void
- */
- public function tearDown() {
- parent::tearDown();
- unset($this->Shell);
- }
- /**
- * test that the startup method supresses the shell header
- *
- * @return void
- */
- public function testMain() {
- $this->Shell->expects($this->any())->method('in')
- ->will($this->returnValue('FooBar'));
- $this->Shell->runCommand(['pluralize']);
- $output = $this->out->output();
- $expected = 'FooBars';
- $this->assertContains($expected, $output);
- $this->Shell->runCommand(['underscore']);
- $output = $this->out->output();
- $expected = 'foo_bar';
- $this->assertContains($expected, $output);
- $this->Shell->runCommand(['dasherize']);
- $output = $this->out->output();
- $expected = 'foo-bar';
- $this->assertContains($expected, $output);
- $this->Shell->runCommand(['slug']);
- $output = $this->out->output();
- $expected = 'foo-bar';
- $this->assertContains($expected, $output);
- $this->Shell->runCommand(['tableize']);
- $output = $this->out->output();
- $expected = 'foo_bar';
- $this->assertContains($expected, $output);
- }
- }
|