11 lines
206 B
Ruby
11 lines
206 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'test_helper'
|
|
|
|
class PostsControllerTest < ActionDispatch::IntegrationTest
|
|
test 'should get index' do
|
|
get posts_index_url
|
|
assert_response :success
|
|
end
|
|
end
|