mailr/test/functional/folder_controller_test.rb
2011-07-29 20:05:47 +02:00

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