require "rails_helper"

RSpec.describe Base::SubfuncoesController, type: :routing do
	describe "routing" do

		it "roteia para #index" do
			expect(:get => "/base/subfuncoes").to route_to("base/subfuncoes#index")
		end
	end
end