Sha256: f31b2431d368362a58c720b425540889f1e0a55934065ab4de0d64247d5523a7
Contents?: true
Size: 1.24 KB
Versions: 3
Compression:
Stored size: 1.24 KB
Contents
require "spec_helper" describe Ruboty::Handlers::Help do let(:robot) do Ruboty::Robot.new end describe "#help" do let(:from) do "alice" end let(:to) do "#general" end context "with valid condition" do let(:body) do <<-EOS.strip_heredoc.strip ruboty /help( me)?(?: (?<filter>.+))?\\z/i - Show this help message ruboty /ping\\z/i - Return PONG to PING ruboty /who am i\\?/i - Answer who you are EOS end it "responds to `@ruboty help` and says each handler's description" do robot.should_receive(:say).with( body: body, code: true, from: to, to: from, original: { body: "@ruboty help", from: from, robot: robot, to: to, }, ) robot.receive(body: "@ruboty help", from: from, to: to) end end context "with filter" do it "filters descriptions by given filter" do robot.should_receive(:say).with( hash_including( body: "ruboty /ping\\z/i - Return PONG to PING", ), ) robot.receive(body: "@ruboty help ping", from: from, to: to) end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ruboty-1.2.2 | spec/ruboty/handlers/help_spec.rb |
ruboty-1.2.1 | spec/ruboty/handlers/help_spec.rb |
ruboty-1.2.0 | spec/ruboty/handlers/help_spec.rb |