98755844a1
* Bind sessions to identities * Remove references to the identity token * Move email changes to identity * Move account menu into a turbo-frame * Create tenants from a tenanted route
14 lines
230 B
Ruby
14 lines
230 B
Ruby
require "test_helper"
|
|
|
|
class Sessions::MenusControllerTest < ActionDispatch::IntegrationTest
|
|
test "show" do
|
|
untenanted do
|
|
sign_in_as :kevin
|
|
|
|
get session_menu_url
|
|
|
|
assert_response :success
|
|
end
|
|
end
|
|
end
|