> I looked at the feature_file.rb file and it's looking for a file
>
> > called "features" within the cucumber directory...and there isn't a
> > file like that there.
>
> How did you come to that conclusion?
> Actually, it's looking for a _directory_ called "features" within your
> current directory.
You're probably right (I wasn't sure if it was looking for a file or a
directory called "features").
I looked @ line 56 of feature_file.rb, which is File.open(@path,
Cucumber.file_mode('r')).read
I placed a "puts @path" just before line 56 and it tells me that @path
is "features", but I think feature_file.rb is looking for the
"features" directory within the directory that holds feature_file.rb b/
c there's no longer path shown when i do "puts @path"
Following the RSpec book, I simply created a directory in my user path
called "hello"
dcq38hb1:hello pbuser$ pwd
/Users/pbuser/Desktop/hello
dcq38hb1:hello pbuser$ ls
greeter_says_hello.feature
dcq38hb1:hello pbuser$ cucumber features
features <= output of my puts statement