16 lines
224 B
Ruby
16 lines
224 B
Ruby
require "test_helper"
|
|
|
|
class PostsControllerTest < ActionController::TestCase
|
|
context "The posts controller" do
|
|
setup do
|
|
end
|
|
|
|
teardown do
|
|
end
|
|
|
|
context "index action" do
|
|
|
|
end
|
|
end
|
|
end
|