assert_equal false, tok.authorized?, "Token should be created unauthorised."
tok.authorize!(users(:public_user))
assert_equal true, tok.authorized?, "Token should now be authorised."
tok.invalidate!
assert_equal false, tok.authorized?, "Token should now be invalid."
end
assert_equal false, tok.authorized?, "Token should be created unauthorised."
tok.authorize!(users(:public_user))
assert_equal true, tok.authorized?, "Token should now be authorised."
tok.invalidate!
assert_equal false, tok.authorized?, "Token should now be invalid."
end