aboutsummaryrefslogtreecommitdiff
path: root/echo.rb
diff options
context:
space:
mode:
authorDavid Vazgenovich Shakaryan <dvshakaryan@gmail.com>2014-04-14 05:12:50 -0700
committerDavid Vazgenovich Shakaryan <dvshakaryan@gmail.com>2014-04-14 05:12:50 -0700
commit376b34ee7249525b0adb49e8c8043ab2fa0d8347 (patch)
treeec556bdaf918fee658675d701b75dc02c385117a /echo.rb
parent282b36e2690aea415244c81eadf093c41f752194 (diff)
downloaddinobot-376b34ee7249525b0adb49e8c8043ab2fa0d8347.tar.gz
dinobot-376b34ee7249525b0adb49e8c8043ab2fa0d8347.tar.xz
Rename Echo to Test and add error testing.
Diffstat (limited to 'echo.rb')
-rw-r--r--echo.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/echo.rb b/echo.rb
deleted file mode 100644
index 34b9770..0000000
--- a/echo.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-require_relative 'module'
-
-module Dinobot
- class Echo < Module
- def initialize
- super
-
- @commands << :echo
- end
-
- def echo(user, channel, argument)
- [[:say, channel, argument]]
- end
- end
-end