X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=tests%2FCommandInterperterTest.php;h=5f681ae1dac82b24ad522c6c8d7004cfce5defc2;hb=a59c439b467b0dd307bf0d84e3d21f7b4c2d9c38;hp=2d1824c69a855a987571057724c66ddb637df43a;hpb=1ee79dc3791162f7ef9b92befaef597328266ce1;p=quix0rs-gnu-social.git diff --git a/tests/CommandInterperterTest.php b/tests/CommandInterperterTest.php index 2d1824c69a..5f681ae1da 100644 --- a/tests/CommandInterperterTest.php +++ b/tests/CommandInterperterTest.php @@ -21,10 +21,7 @@ class CommandInterpreterTest extends PHPUnit_Framework_TestCase { $inter = new CommandInterpreter(); - $user = new User(); // fake user - $user->limit(1); - $user->find(); - $cmd = $inter->handle_command($user, $input); + $cmd = $inter->handle_command(null, $input); $type = $cmd ? get_class($cmd) : null; $this->assertEquals(strtolower($expectedType), strtolower($type), $comment); @@ -149,21 +146,21 @@ class CommandInterpreterTest extends PHPUnit_Framework_TestCase array('invite foo bar', null), array('track', null), - array('track foo', 'TrackCommand'), - array('track off', 'TrackOffCommand'), + array('track foo', 'SearchSubTrackCommand'), + array('track off', 'SearchSubTrackOffCommand'), array('track foo bar', null), array('track off foo', null), array('untrack', null), - array('untrack foo', 'UntrackCommand'), - array('untrack all', 'TrackOffCommand'), + array('untrack foo', 'SearchSubUntrackCommand'), + array('untrack all', 'SearchSubTrackOffCommand'), array('untrack foo bar', null), array('untrack all foo', null), - array('tracking', 'TrackingCommand'), + array('tracking', 'SearchSubTrackingCommand'), array('tracking foo', null), - array('tracks', 'TrackingCommand'), + array('tracks', 'SearchSubTrackingCommand'), array('tracks foo', null), );