in reply to Re^4: Test::More command-line arguments?
in thread Test::More command-line arguments?

Well, your tests shouldn't need arguments :)

If you need to database connection details, traditional solution is to either use env vars ( along the lines of TEST_MYSQL_USER TEST_MYSQL_PASS ... or TEST_MYSQL_DSN )

Of via distribution config file , which your tests know how to read

  • Comment on Re^5: Test::More command-line arguments?