This repository has been archived on 2023-09-12. You can view files and clone it, but cannot push or open issues or pull requests.
|
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
|