コード例 #1
0
ファイル: CommandMatcherSpec.php プロジェクト: mcrumm/phlack
 public function it_does_not_match_unmatched_names(SlashCommand $command)
 {
     $command->get('command')->willReturn('/bar');
     $this->setCommandName('/foo')->matches($command)->shouldReturn(false);
 }