0

Learn Pythonの演習47を難しい方法で行っていますが、次のようなエラーが発生します。

Traceback (most recent call last):
File "c:\python26\lib\site-packages\nose-1.2.0-py2.6.egg\nose
97, in runTest
self.test(*self.arg)
File "E:\project\ex47\tests\ex47_tests.py", line 27, in test_
assert_equal(start.go('down').go('up'),start)
AssertionError: None != <ex47.game.Room object at 0x0191BFD0>

#while executing the below code: 

from nose.tools import *
from ex47.game import Room

def test_room():
    gold=Room("GoldRoom",
                """This room has gold in it you can grab. There's a
                door to the north.""")
    assert_equal(gold.name,"GoldRoom")
    assert_equal(gold.paths,{})

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)

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})
    assert_equal(start.go('west'),west)
    assert_equal(start.go('west').go('east'),start)
    assert_equal(start.go('down').go('up'),start)

Googleで検索したところ、デバッグ中に発生することがわかりましたが、game.pyファイルがbinフォルダー内にあることが原因である可能性もあります。

全体の構造はこんな感じ

Projects / ex47 / bins /
                              / docs
                               /tests/ex47_tests.py、_ _ init_ _ .py
                              /ex47/game.py

誰かが私を助けて、なぜ私がこのエラーを受け取っているのか教えてもらえますか?

これはgame.pyファイルです。

class Room(object):
    def __init__(self,name,description):
        self.name = name
        self.description = description
        self.paths={}


    def go(self,direction):
        return self.paths.get(direction,None)

    def add_paths(self,paths):
        self.paths.update(paths)
4

2 に答える 2

1

部屋にupパスを追加したことがありません。down

down = Room("Dungeon","It's dark down here, you can go up.")

だからあなたの失敗はこの行にあります

assert_equal(start.go('down').go('up'),start)

start.go('down')down Roomのパスを持たないオブジェクトを返しますupNone呼び出しから戻りget()、オブジェクトを再度比較しstartます。主張が提起される理由はNone != start

この行が必要なようです:

down.add_paths({'up', start})
于 2012-09-14T13:20:04.933 に答える
0

テストしている実際のコードは表示されませんが、おそらくどこかでreturnステートメントが欠落しています。

于 2012-09-14T13:10:46.133 に答える