diff --git a/features/cli/require.feature b/features/cli/require.feature index 96171f5..83e532e 100644 --- a/features/cli/require.feature +++ b/features/cli/require.feature @@ -1,5 +1,9 @@ Feature: require CLI option Scenario: requires a ruby feature - When I run uhwm with option -v -r abbrev - Then the output must match /load.+abbrev.+ruby feature/i + Given a file named my_feature.rb with: + """ + puts 'testing_feature_load' + """ + When I run uhwm with option -r ./my_feature.rb + Then the output must contain "testing_feature_load"