Created
July 20, 2011 02:51
-
-
Save evolve2k/1094231 to your computer and use it in GitHub Desktop.
Fixing Cucumber & Rspec Textmate HTML Display issues
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # A place to store all the various little fixes required to keep cucumber/rspec textmate HTML output working | |
| ### CUCUMBER ################### | |
| # If it raises an error that radix is not found. | |
| # Could not find radix- in any of the sources (Bundler::GemNotFound) | |
| $ gem install radix # as a system gem | |
| Make sure you are on a recent cucumber bundle. | |
| #`create_from_file_path': Feature files should have suffix .feature; Step definitions should be _steps.rb (Cucumber::Mate::Files::InvalidFilePathError) | |
| # I had renamed a file create_customer.feature.deprecated, and got this error, just make the suffix .feature like it says before running the test :) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment