PageRenderTime 26ms CodeModel.GetById 11ms RepoModel.GetById 0ms app.codeStats 0ms

/test/functional/friendships_controller_test.rb

https://github.com/ischroedi/petracommunity
Ruby | 18 lines | 13 code | 3 blank | 2 comment | 0 complexity | ed3719a2b15f9de9b58335ff4a07665a MD5 | raw file
  1. require File.dirname(__FILE__) + '/../test_helper'
  2. require 'friendships_controller'
  3. # Re-raise errors caught by the controller.
  4. class FriendshipsController; def rescue_action(e) raise e end; end
  5. class FriendshipsControllerTest < Test::Unit::TestCase
  6. def setup
  7. @controller = FriendshipsController.new
  8. @request = ActionController::TestRequest.new
  9. @response = ActionController::TestResponse.new
  10. end
  11. # Replace this with your real tests.
  12. def test_truth
  13. assert true
  14. end
  15. end