Bot controller

This commit is contained in:
Hipster Hitman
2011-04-28 03:18:06 +04:00
parent 91b14bf524
commit 6809623b02
13 changed files with 350 additions and 2 deletions
+34
View File
@@ -0,0 +1,34 @@
require 'test_helper'
class BotControllerTest < ActionController::TestCase
test "should get list" do
get :list
assert_response :success
end
test "should get stats" do
get :stats
assert_response :success
end
test "should get queue" do
get :queue
assert_response :success
end
test "should get start" do
get :start
assert_response :success
end
test "should get stop" do
get :stop
assert_response :success
end
test "should get add" do
get :add
assert_response :success
end
end