2012-04-26 6 views
2

test_ex47.rbを実行しているときにexercisesと を取得しています。NameError:Unitialized Constant MyUnitTests::Roomを取得しています。Ruby名エラー - 未初期化定数

test_ex47.rb:

require 'test/unit' 
require_relative '../lib/ex47' 

class MyUnitTests < Test::Unit::TestCase 
    def test_room() 
     gold = Room.new("Gold Room", """This room has gold in it you can grab. There's a doo to the north.""") 
    assert_equal(gold.name, "GoldRoom") 
    assert_equal(gold.paths, {}) 
end 

def test_room_paths() 
    center = Room.new("Center", "Test room in the center.") 
    north = Room.new("North", "Test room in the north.") 
    south = Room.new("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) 
end 

def test_map() 
    start = Room.new("Start", "You can go west and down a hole.") 
    west = Room.new("Trees", "There are trees here, you can go east.") 
    down = Room.new("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) 
end 

end 

ex47.rbはlibフォルダに位置しているように見えます:ここでの問題は、あなたがいることである

Finished tests in 0.000872s, 3440.3670 tests/s, 0.0000 assertions/s. 

    1) Error: 
test_map(MyUnitTests): 
NameError: uninitialized constant MyUnitTests::Room 
    test_ex47.rb:22:in `test_map' 

    2) Error: 
test_room(MyUnitTests): 
NameError: uninitialized constant MyUnitTests::Room 
    test_ex47.rb:6:in `test_room' 

    3) Error: 
test_room_paths(MyUnitTests): 
NameError: uninitialized constant MyUnitTests::Room 
    test_ex47.rb:12:in `test_room_paths' 

3 tests, 0 assertions, 0 failures, 3 errors, 0 skips] 
+1

実際のコードではなく、 'Room'クラスに' attr_accessor'ではなく 'aatr_accessor'がありますかどうか不明です。 – mikej

+0

ありがとうございますmikej。それを修正し、いくつかの他のものは、同じエラーをスティルします。 >:| – septerr

答えて

3

class Room 
aatr_accessor :name, :description, :paths 

def initialize(name, description) 
    @name = name 
    @description = description 
    @paths = {} 
end 

def go(direction) 
    @paths[direction] 
end 

def add_paths(paths) 
    @paths.update(paths) 
end 
end 

エラー3行目のMyUnitTestsクラスの中にRoomオブジェクトを作成しています。RubyはMyUnitTest :: Roomというクラスを使用したいと考えていますchは存在しません。あなたはそうのように、絶対的なクラス参照を使用する必要があります。

class MyUnitTests < Test::Unit::TestCase 
    def test_room() 
     gold = ::Room.new("Gold Room", """This room has gold in it you can grab. There's a doo to the north.""") 
    assert_equal(gold.name, "GoldRoom") 
    assert_equal(gold.paths, {}) 
end 

はお知らせ:: Room.new前に行が3に?これはRubyに、トップレベルの名前空間からRoomオブジェクトを作成することを伝えています:)

あなたの質問に答えてくれることを願っています。

編集:ルームクラスの他の参照を::ルームに変更する必要があります。申し訳ありませんが、インデントのために上位のものだけが問題だったと思いました。近くに見ると、残りの部分にも::が必要であることがわかります。

関連する問題