13 lines
253 B
Ruby
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
|