Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7921589
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T16:38:16+00:00 2026-06-03T16:38:16+00:00

I am doing exercises and am getting NameError:Unitialized Constant MyUnitTests::Room when running test_ex47.rb. test_ex47.rb:

  • 0

I am doing exercises and am
getting NameError:Unitialized Constant MyUnitTests::Room when running test_ex47.rb.

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 is located in the lib folder and looks like:

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

Error:

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 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T16:38:18+00:00Added an answer on June 3, 2026 at 4:38 pm

    The problem here is that you are creating a Room object inside the MyUnitTests class on line 3. Ruby thinks you want to use a class called MyUnitTest::Room, which doesn’t exist. You need to use an absolute class reference, like so:

    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
    

    Notice the :: before Room.new on line 3 there? That tells Ruby that you want to create a Room object from the top level name space 🙂

    I hope that answers your question.

    EDIT: You’ll also need to change your other references to the Room class to ::Room. Sorry, I thought only the top one was a problem because of the indentation. A closer look reveals that the rest need the :: as well.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I was doing the exercises from YAHT's Recursive Datatype section, and found writing the
I am doing some exercises in my object-oriented javascript book, I notice that this:
I am doing some exercises and tried to convert a simple class into a
I am doing some exercises in assembly language and I found a question about
I am learning C#. Doing the below exercises to make use of features. I
what am I doing wrong here? I keep on getting a compilation error when
I've been doing some exercises from a book and I'm wondering if you could
Preface: I'm very new to objective-c and I am doing simple exercises to learn
I started studying POSIX timers, so I started also doing some exercises, but I
I am doing some exercises from the book Thinking In Java . I have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.