forked from fixin.me/fixin.me
To allow proper path prefix for view partials when using config.action_view.prefix_partial_path_with_controller_namespace
9 lines
193 B
Ruby
9 lines
193 B
Ruby
require "test_helper"
|
|
|
|
class Default::UnitsControllerTest < ActionDispatch::IntegrationTest
|
|
test "should get index" do
|
|
get units_defaults_index_url
|
|
assert_response :success
|
|
end
|
|
end
|