X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/75091532075247ae9c47164ea883f4fe803eddf4..04f827dd4647f3a7d6e5bd8f5e9083c730a8dccc:/test/functional/quickvote_controller_test.rb diff --git a/test/functional/quickvote_controller_test.rb b/test/functional/quickvote_controller_test.rb new file mode 100644 index 0000000..d0b37d9 --- /dev/null +++ b/test/functional/quickvote_controller_test.rb @@ -0,0 +1,18 @@ +require File.dirname(__FILE__) + '/../test_helper' +require 'quickvote_controller' + +# Re-raise errors caught by the controller. +class QuickvoteController; def rescue_action(e) raise e end; end + +class QuickvoteControllerTest < Test::Unit::TestCase + def setup + @controller = QuickvoteController.new + @request = ActionController::TestRequest.new + @response = ActionController::TestResponse.new + end + + # Replace this with your real tests. + def test_truth + assert true + end +end