示例#1
0
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 is dark down here, you can go up.')

    start.add_paths({'west':west, 'down':down})
    west.add_paths('east':start)
    down.add_paths({'up':start})

    assert_equal(start.go('west'), west)
    assert_equal(start.go('west').go('east'),start)
    assert_equal(start.go('down').go('up'),start)
示例#2
0
def test_room():
    gold = Room(
        "GoldRoom",
        """This room has gold in it you can grap .Ther's a door to the north."""
    )
    assert_equal(gold.name, "GoldRoom")
    assert_equal(gold.paths, {})
示例#3
0
def test_room_paths():
    center = Room("Center", "Test room in the center.")
    north = Room("North", "Test room in the north.")
    south = Room("South", "Test room in the south.")
    center.add_paths({'north': north, 'south': south})
    assert_equal(center.go('north'), north)
    assert_equal(center.go('south'), south)
示例#4
0
    def test_room_paths(self):
        center = Room("Center", "Test room in the center.")
        north = Room("North", "Test room in the north.")
        south = Room("South", "Test room in the south.")

        center.add_paths({'north': north, 'south': south})
        self.assertTrue(center.go('north') == north)
        self.assertTrue(center.go('south') == south)
示例#5
0
def test_room_paths():
    center = Room('Center', 'Test room in the center')
    north = Room('North', 'Test room in the north')
    south = Room('South', 'Test room in the south')

    center.add_apths({'north':north, 'south':south})
    assert_equal(center.go('north'), north)
    assert_equal(center.go('south'), south)
示例#6
0
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 can go up.")
    start.add_paths({'west': west, 'down': down})
    west.add_paths({'east': start})
    down.add_paths({'up': start})
    assert_equal(start.go('west'), west)
    assert_equal(start.go('west').go('east'), start)
    assert_equal(start.go('down').go('up'), start)
示例#7
0
 def test_room(self):
     gold = Room("GoldRoom",
                 """This room has gold in it you can grab. 
                 There's a door to the north.""")
     self.assertEqual(gold.name, "GoldRoom")
     self.assertEqual(gold.paths, {})
示例#8
0
    def test_map(self):
        start = Room("Start", "You can go west and down a hole.")
        west = Room("Trees", "There are trees here and you can go east.")
        down = Room("Dungeon", "It's dark down here, you can go up.")

        start.add_paths({'west': west, 'down': down})
        west.add_paths({'east': start})
        down.add_paths({'up': start})

        self.assertEqual(start.go('west'), west)
        self.assertEqual(start.go('down'), down)
        self.assertTrue(west.go('east') == start)
        self.assertTrue(down.go('up') == start)
示例#9
0
def test_room():
    gold = Room('GoldRoom','This room has gold in it you can grab, There is a door to the north.')
    assert_equal(gold.name, 'GoldRoom')
    assert_equal(gold.paths,{})
示例#10
0
def test_room():
    gold = Room('GoldRoom', """there are gold and a door to the north""")
    assert_equal(gold.name, "GoldRoom")
    assert_equal(gold.paths, {})