sparklines is not used in flare, remove auto-generated test

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@540686 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Erik Hatcher 2007-05-22 18:32:06 +00:00
parent 1e0e887878
commit f2837a8ab0
1 changed files with 0 additions and 30 deletions

View File

@ -1,30 +0,0 @@
require File.dirname(__FILE__) + '/../test_helper'
require 'sparklines_controller'
# Re-raise errors caught by the controller.
class SparklinesController; def rescue_action(e) raise e end; end
class SparklinesControllerTest < Test::Unit::TestCase
#fixtures :data
def setup
@controller = SparklinesController.new
@request = ActionController::TestRequest.new
@response = ActionController::TestResponse.new
end
def test_index
get :index, :results => "1,2,3,4,5", :type => 'bar', :line_color => 'black'
assert_response :success
assert_equal 'image/png', @response.headers['Content-Type']
end
# TODO Replace this with your actual tests
def test_show
get :show
assert_response :success
assert_equal 'image/png', @response.headers['Content-Type']
end
end