video_pro/test/controllers/admin/video_pros_controller_test.rb

20 lines
331 B
Ruby

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