adbanner-test/test/controllers/admin/ad_images_controller_test.rb

20 lines
330 B
Ruby
Raw Normal View History

2014-04-11 07:47:33 +00:00
require 'test_helper'
class Admin::AdImagesControllerTest < ActionController::TestCase
test "should get index" do
get :index
assert_response :success
end
test "should get new" do
get :new
assert_response :success
end
test "should get create" do
get :create
assert_response :success
end
end