13 lines
293 B
Ruby
13 lines
293 B
Ruby
require "test_helper"
|
|
|
|
class Public::Boards::Columns::NotNowsControllerTest < ActionDispatch::IntegrationTest
|
|
setup do
|
|
boards(:writebook).publish
|
|
end
|
|
|
|
test "show" do
|
|
get public_board_columns_not_now_path(boards(:writebook).publication.key)
|
|
assert_response :success
|
|
end
|
|
end
|