musifrat_app/test/controllers/admin/donators_controller_test.rb
Nicolas Bally a1aef72f7f intial
2019-02-03 15:12:58 +01: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