Testing is broken out of the box! This is how you fix it :
test/test_helper.rb
# Configure Rails Environment
ENV["RAILS_ENV"] = "test"
require File.expand_path("../dummy/config/environment.rb", __FILE__)
require "rails/test_help"
Rails.backtrace_cleaner.remove_silencers!
# Load support files
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
# Load fixtures from the engine
ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
class ActiveSupport::TestCase
fixtures :all
end
#fixes other problems with controller tests (url helpers)
class ActionController::TestCase
setup do
@routes = Users::Engine.routes
end
end