mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
20 lines
366 B
Ruby
20 lines
366 B
Ruby
require 'test_helper'
|
|
|
|
class FolderControllerTest < ActionDispatch::IntegrationTest
|
|
test "should get create" do
|
|
get folder_create_url
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get update" do
|
|
get folder_update_url
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get destroy" do
|
|
get folder_destroy_url
|
|
assert_response :success
|
|
end
|
|
|
|
end
|