chasselay_app/test/functional/contact_controller_test.rb
2013-09-18 15:24:45 +02:00

15 lines
242 B
Ruby

require 'test_helper'
class ContactControllerTest < ActionController::TestCase
test "should get new" do
get :new
assert_response :success
end
test "should get create" do
get :create
assert_response :success
end
end