a lot of stuff added
This commit is contained in:
parent
37f548ce46
commit
7967e6d5c8
35 changed files with 559 additions and 64 deletions
19
test/functional/folder_controller_test.rb
Executable file
19
test/functional/folder_controller_test.rb
Executable file
|
@ -0,0 +1,19 @@
|
|||
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
|
Loading…
Add table
Add a link
Reference in a new issue