event_news/test/controllers/admin/announcements_controller_te...

15 lines
269 B
Ruby
Raw Normal View History

2022-01-21 02:09:31 +00:00
require 'test_helper'
class Admin::AnnouncementsControllerTest < ActionController::TestCase
test "should get new" do
get :new
assert_response :success
end
test "should get create" do
get :create
assert_response :success
end
end