lithium\tests\cases\console\command\g11n\ExtractTest::testInit PHP Method

testInit() public method

Added realpath() to fix issues when lithium is linked in to the app's libraries directory.
public testInit ( )
    public function testInit()
    {
        $command = new Extract();
        $this->assertEqual(realpath(Libraries::get(true, 'path')), realpath($command->source));
        $this->assertEqual(Libraries::get(true, 'resources') . '/g11n', $command->destination);
    }