seminar/custom_announcement/test/controllers/admin/custom_announcements_contro...

15 lines
261 B
Ruby

require 'test_helper'
class Admin::CustomAnnouncementsControllerTest < 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