adopt-a-hydrant/test/controllers/sitemaps_controller_test.rb

9 lines
191 B
Ruby
Raw Normal View History

2011-05-15 18:30:32 +00:00
require 'test_helper'
class SitemapsControllerTest < ActionController::TestCase
test 'should return an XML sitemap' do
2014-03-25 09:47:44 +00:00
get :index, format: 'xml'
2011-05-15 18:30:32 +00:00
assert_response :success
end
end