15 lines
254 B
Ruby
Executable File
15 lines
254 B
Ruby
Executable File
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
|