forked from e621ng/e621ng
13 lines
239 B
Ruby
13 lines
239 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "test_helper"
|
|
|
|
class PopularControllerTest < ActionDispatch::IntegrationTest
|
|
context "#index" do
|
|
should "render" do
|
|
get popular_index_path
|
|
assert_response :success
|
|
end
|
|
end
|
|
end
|