cancer_predict/test/controllers/admin/cancerpredicts_controller_t...

15 lines
256 B
Ruby
Raw Normal View History

2019-11-15 00:44:28 +00:00
require 'test_helper'
class Admin::CancerpredictsControllerTest < 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