20 lines
327 B
Ruby
Executable file
20 lines
327 B
Ruby
Executable file
require 'test_helper'
|
|
|
|
class FolderControllerTest < ActionController::TestCase
|
|
test "should get index" do
|
|
get :index
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get create" do
|
|
get :create
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get delete" do
|
|
get :delete
|
|
assert_response :success
|
|
end
|
|
|
|
end
|