Files
danbooru/test/functional/counts_controller_test.rb
2017-02-06 18:48:35 -06:00

13 lines
262 B
Ruby

require 'test_helper'
class CountsControllerTest < ActionController::TestCase
context "The counts commentary controller" do
context "posts action" do
should "render" do
get :posts
assert_response :success
end
end
end
end