patch_file/test/controllers/admin/patchfiles_controller_test.rb

15 lines
252 B
Ruby
Raw Normal View History

2019-09-28 11:48:59 +00:00
require 'test_helper'
class Admin::PatchfilesControllerTest < 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