Newer
Older
rails-app / test / controllers / posts_controller_test.rb
@ItoRino ItoRino on 15 Jan 2023 175 bytes add:railsのアプリ
require "test_helper"

class PostsControllerTest < ActionDispatch::IntegrationTest
  test "should get index" do
    get posts_index_url
    assert_response :success
  end
end