Skip to content
New issue

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

Possible mistake in "CUSTOMIZING TEST RUNS" POD #28

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/Test/Class/Load.pm
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,9 @@ Then, just make sure that all of your test classes inherit from your own base cl

1;

Then you can run an individual test class by using the C<prove> utility, tell it the directory of the test classes and the name of the test package you wish to run:
Then you can run an individual test class by using the C<prove> utility, tell it the directory of the test classes and the filename of the test class you wish to run:

prove -lv -It/tests Some::Test::Class
prove -lv -It/tests t/lib/Some/Test/Class.pm

You can even automate this by binding it to a key in C<vim>:

Expand Down