require "test_helper" class Command::GoToUserTest < ActionDispatch::IntegrationTest include CommandTestHelper test "redirect to the user perma" do result = execute_command "@kevin" assert_equal user_path(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