aboutsummaryrefslogtreecommitdiff
path: root/test.rb
blob: bc9db29299bf0af0d02c593dad8d430ba7dd1cb3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require_relative 'module'

module Dinobot
  class Test < Module
    def initialize
      super

      @commands << :echo << :error << :timeout
    end

    def echo(user, channel, argument)
      [[:say, channel, argument]]
    end

    def error(user, channel, argument)
      x
    end

    def timeout(user, channel, argument)
      sleep 60
    end
  end
end