def test_people():
	start = Room("Start", "You can go west and down a hole.")
	west = Room("Trees", "There are trees here, you can go east.")
	down = Room("Dungeon", "It's dark down here, you can go up.")

	start.add_people({"no one": "You sound crazy talking to yourself"})
	west.add_people({"fox": "Wahpah wahpah wah pah-pow!"})
	down.add_people({"Sterling Archer": "DANGER ZONE"})
	assert_equal(start.talk("no one"), "You sound crazy talking to yourself")
	assert_equal(west.talk("fox"), "Wahpah wahpah wah pah-pow!")
	assert_equal(down.talk("Sterling Archer"), "DANGER ZONE")