tap/test/controllers/users_controller_test.rb

15 lines
236 B
Ruby
Raw Normal View History

2014-11-06 15:25:27 +00:00
require 'test_helper'
class UsersControllerTest < ActionController::TestCase
test "should get new" do
get :new
assert_response :success
end
2014-11-23 20:12:31 +00:00
test "should get show" do
get :show
assert_response :success
end
2014-11-06 15:25:27 +00:00
end