10 lines
176 B
Ruby
10 lines
176 B
Ruby
|
require 'test_helper'
|
||
|
|
||
|
class PostsControllerTest < ActionDispatch::IntegrationTest
|
||
|
test "should get index" do
|
||
|
get posts_index_url
|
||
|
assert_response :success
|
||
|
end
|
||
|
|
||
|
end
|