1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-01 12:24:28 +01:00
fab-manager/test/integration/rss/projects_test.rb

13 lines
270 B
Ruby

# frozen_string_literal: true
require 'test_helper'
module Rss; end
class Rss::ProjectsTestTest < ActionDispatch::IntegrationTest
test '#index' do
get rss_projects_path
assert_response :success
assert Nokogiri::XML(response.body).errors.empty?
end
end