def test_room_paths(): centre = Room("Centre", "Test room in the center.") north = Room("North", "Test room in the north.") south = Room("South", "Test room in the south.") centre.add_paths({"north": north, "south": south}) assert_equal(centre.go("north"), north) assert_equal(centre.go("south"), south)
def test_room_paths(): centre = Room("Centre", "Test room in the center.") north = Room("North", "Test room in the north.") south = Room("South", "Test room in the south.") centre.add_paths({'north': north, 'south': south}) assert_equal(centre.go('north'), north) assert_equal(centre.go('south'), south)
def test_map(): 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 con go up.") start.add_paths({"west": west, "down": down}) start.add_paths({"east": start}) start.add_paths({"up": start}) west.add_paths({"east": start}) down.add_paths({"up": start}) assert_equal(start.go("west"), west) assert_equal(start.go("east"), start) assert_equal(start.go("west").go("east"), start) assert_equal(start.go("down").go("up"), start)
def test_room(): gold = Room("GoldRoom", """This room has gold in it you can grab. There's a door it to the north.""") assert_equal(gold.name, "GoldRoom") assert_equal(gold.paths, {})
def test_map(): 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 con go up.") start.add_paths({'west': west, 'down': down}) start.add_paths({'east': start}) start.add_paths({'up': start}) west.add_paths({'east': start}) down.add_paths({'up': start}) assert_equal(start.go('west'), west) assert_equal(start.go('east'), start) assert_equal(start.go('west').go('east'), start) assert_equal(start.go('down').go('up'), start)