In writing my test cases, I would prefer to do something like the following...
google_user = google_apps_connection.retrieve_user(google_username)
unless google_user.nil?
google_apps_connection.delete_user(google_username)
end
...
here is my code that creates a user
...
google_user = google_apps_connection.retrieve_user(google_username)