working quickvote support created
[selectricity-live] / 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 (file)
index 0000000..d0b37d9
--- /dev/null
@@ -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

Benjamin Mako Hill || Want to submit a patch?