- def test_oauth10a_web_app
- client = client_applications(:oauth_web_app)
-
- post_via_redirect "/login",
- :username => client.user.email, :password => "test"
- assert_response :success
-
- signed_get "/oauth/request_token",
- :consumer => client, :oauth_callback => "oob"
- assert_response :success
- token = parse_token(response)
- assert_instance_of RequestToken, token
- assert_not_nil token.created_at
- assert_nil token.authorized_at
- assert_nil token.invalidated_at
- assert_allowed token, client.permissions
+ def oauth10a_without_callback(client)
+ token = get_request_token(client, :oauth_callback => "oob")