X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/0f9de7a83f46b302d82dbeb66def7f12ae15077a..c1f049541fe6ae41860d1bd76336761c10ca483c:/test/functional/graph_controller_test.rb diff --git a/test/functional/graph_controller_test.rb b/test/functional/graph_controller_test.rb new file mode 100644 index 0000000..4594335 --- /dev/null +++ b/test/functional/graph_controller_test.rb @@ -0,0 +1,22 @@ +require File.dirname(__FILE__) + '/../test_helper' +require 'graph_controller' + +# Re-raise errors caught by the controller. +class GraphController; def rescue_action(e) raise e end; end + +class GraphControllerTest < Test::Unit::TestCase + + #fixtures :data + + def setup + @controller = GraphController.new + @request = ActionController::TestRequest.new + @response = ActionController::TestResponse.new + end + + # TODO Replace this with your actual tests + def test_show + assert true + end + +end