require 'test_helper' module Vulgata class ActivityControllerTest < ActionDispatch::IntegrationTest include Engine.routes.url_helpers setup do login_as create(:johnny_the_admin) @routes = Engine.routes end test "should get index" do get activity_index_path assert_response :success end end end