in reply to Re: How do I test a script that doesn't have a .pl extension
in thread How do I test a script that doesn't have a .pl extension

yes require 'foo' works, but require_ok(foo) fails. that is what threw me.
I'm trying to add a suite of tests that can go from server to server, OS to OS. the full path will not always be the same. and the tests are not all at the same directory level.
I am actually using a BEGIN block which finds a common ancestor directory and then builds the lib path from there.
further testing has shown that even if foo is in the test directory, require_ok(foo) doesn't work
  • Comment on Re^2: How do I test a script that doesn't have a .pl extension