Emergency commit after a dirty shutdown.

This commit is contained in:
2023-05-23 09:29:12 +01:00
parent 2fe142ed86
commit c671cc2dc1
4 changed files with 16 additions and 8 deletions

Binary file not shown.

View File

@@ -1,11 +1,17 @@
require "test_helper"
class DomainsControllerTest < ActionDispatch::IntegrationTest
include Devise::Test::IntegrationHelpers
setup do
@domain = domains(:one)
end
test "should get index" do
test "not should get index because we are not logged in" do
get domains_url
assert_response :success
end
test "should get index because we are logged in" do
get domains_url
assert_response :success
end