mailr/test/functional/folder_controller_test.rb

20 lines
327 B
Ruby
Raw Normal View History

2011-07-29 20:05:47 +02:00
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