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

13 lines
253 B
Ruby

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