- 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."
+ assert_not tok.authorized?, "Token should be created unauthorised."
+ tok.authorize!(create(:user))
+ assert_predicate tok, :authorized?, "Token should now be authorised."