I have a cucumber feature at features/object/create_object.feature. It passes when I execute all of my features with the 'cucumber' command. I'm trying to execute this feature by itself using these commands:
cucumber features/object/create_object.feature
rake features FEATURE=features/object/create_object.feature
However, all step definitions for this feature come up as undefined:
Using the default profile...
-------UUUUUUUUUUUU
I've also tried disabling the profile with "--no-profile", but to no avail. Thanks in advance!