diff --git a/test/functional/sitemaps_controller_test.rb b/test/functional/sitemaps_controller_test.rb new file mode 100644 index 0000000..1ae7e82 --- /dev/null +++ b/test/functional/sitemaps_controller_test.rb @@ -0,0 +1,8 @@ +require 'test_helper' + +class SitemapsControllerTest < ActionController::TestCase + test 'should return an XML sitemap' do + get :index, :format => 'xml' + assert_response :success + end +end