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