# frozen_string_literal: true class SitesControllerTest < ActionDispatch::IntegrationTest setup do @rol = create :rol @site = @rol.site @usuarie = @rol.usuarie @authorization = { Authorization: ActionController::HttpAuthentication::Basic .encode_credentials(@usuarie.email, @usuarie.password) } end teardown do @site.destroy end test 'se pueden ver' do get sites_url, headers: @authorization assert_match @site.name, response.body end test 'se puede ver el formulario de creación' do get new_site_url, headers: @authorization assert_match(/