bievre_reno_app/test/controllers/admin/donators_controller_test.rb
Caroline Girard d727d313b7 initial
2018-09-11 13:49:55 +02:00

15 lines
254 B
Ruby

require 'test_helper'
class Admin::DonatorsControllerTest < ActionController::TestCase
test "should get index" do
get :index
assert_response :success
end
test "should get import" do
get :import
assert_response :success
end
end