You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

load_path.feature 476 B

2 years ago
1234567891011121314151617
  1. Feature: Set up a default load path
  2. When you're developing a gem, it's convenient if your project's `lib` directory
  3. is already in the load path. Cucumber does this for you.
  4. Scenario: ./lib is included in the $LOAD_PATH
  5. Given a file named "features/support/env.rb" with:
  6. """
  7. require 'something'
  8. """
  9. And a file named "lib/something.rb" with:
  10. """
  11. class Something
  12. end
  13. """
  14. When I run `cucumber`
  15. Then it should pass

No Description

Contributors (1)