orbit4-5/test/controllers/users_controller_test.rb

15 lines
240 B
Ruby

require 'test_helper'
class UsersControllerTest < 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