From: Justin Collins Date: 2011-09-19T20:23:02+09:00 Subject: Re: How-to run a 'minitest' test? On 09/19/2011 03:44 AM, Lb Tr wrote: > Hi, > > I am trying run the attached test which I found on the 'minitest' > website: http://bfts.rubyforge.org/minitest/. > > However, when I run the meme_test.rb from the command-line I get the > following error message: > > C:/Documents and Settings/lblake/Desktop/meme_test.rb:4:in ` (required)>': uninitialized constant Object::Meme (NameError) > from How does the code in meme_test.rb know about the code in meme.rb? You need to either combine these two files into one (not recommended) or use require_relative "meme" in meme_test.rb -Justin