debshots/test/controllers/my_controller_test.rb
Christoph Haas 64bf286636 Tests run okay
…they are massively incomplete though
2018-08-13 15:02:28 +02:00

9 lines
178 B
Ruby

require "test_helper"
class MyControllerTest < ActionController::TestCase
test "should get profile without login" do
get :profile
assert_response :redirect
end
end