We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It should be possible to use matchers like be_an_existing_file everywhere in a project's spec suite, even outside an Aruba spec.
be_an_existing_file
Just calling require "aruba/rspec" or similar should allow one to use be_an_existing_file in any spec.
require "aruba/rspec"
Calling this helper fails because it can't find stop_all_commands.
stop_all_commands
file?
I'm porting a project from minitest to rspec + aruba, and wanted to use be_an_exsting_file to replace minitest's path_must_exist matcher.
be_an_exsting_file
path_must_exist
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Summary
It should be possible to use matchers like
be_an_existing_file
everywhere in a project's spec suite, even outside an Aruba spec.Expected Behavior
Just calling
require "aruba/rspec"
or similar should allow one to usebe_an_existing_file
in any spec.Current Behavior
Calling this helper fails because it can't find
stop_all_commands
.Possible Solution
file?
helper in a way that doesn't require it to be a local method.Context & Motivation
I'm porting a project from minitest to rspec + aruba, and wanted to use
be_an_exsting_file
to replace minitest'spath_must_exist
matcher.The text was updated successfully, but these errors were encountered: