mintbooru/test/controllers/posts_controller_test.rb

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