Files
fizzy/test/controllers/boards/columns/closeds_controller_test.rb
T
2025-11-05 13:41:12 +01:00

13 lines
252 B
Ruby

require "test_helper"
class Boards::Columns::ClosedsControllerTest < ActionDispatch::IntegrationTest
setup do
sign_in_as :kevin
end
test "show" do
get board_columns_closed_path(boards(:writebook))
assert_response :success
end
end