RBOnRails-learning/test/controllers/articles_controller_test.rb
2024-08-07 16:43:33 +02:00

9 lines
181 B
Ruby

require "test_helper"
class ArticlesControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get articles_index_url
assert_response :success
end
end