17 lines
389 B
Ruby
17 lines
389 B
Ruby
require "test_helper"
|
|
|
|
class Command::GoToUserTest < ActionDispatch::IntegrationTest
|
|
include CommandTestHelper
|
|
|
|
test "redirect to the user perma" do
|
|
result = execute_command "@kevin"
|
|
|
|
assert_equal users(:kevin), result.url
|
|
end
|
|
|
|
test "result in an invalid command if the user does not exist" do
|
|
command = parse_command "@not_a_user"
|
|
assert !command.valid?
|
|
end
|
|
end
|