Feature: Household name As a signed-in user I want to name my household So that it's recognizable as ours, not the auto-generated default Scenario: A visitor without a session cannot read the household When I send a GET request to "/house/current" Then the response status should be 401 And the response error code should be "NOT_AUTHENTICATED" Scenario: A signed-in user renames their household Given a profile already exists with email "alice@example.com" and password "correct-horse-battery-staple" And I log in with email "alice@example.com" and password "correct-horse-battery-staple" When I rename my household to "Chez les Martin" Then the response status should be 200 And my household should be named "Chez les Martin"