/// Finds the path to your program, whether you are running locally
/// or using Travis-CI. (**Note: Does not support other CI schemes.**)
///
/// This macro exists so you can easily run a command-line program
/// in an integration test, whether you are running the program
/// locally (in which case the path is just "target/debug/YOUR_PROGRAM_NAME")
/// or using Travis-CI.
///
/// Here's an example of how you might use it:
///
/// ```ignore
/// use std::process::Command;
/// let cmd = Command::new(program_path!());
/// ```
///
/// (The structure of this was heavily inspired from the macros in
/// [Clap](https://github.com/clap-rs/clap/blob/master/src/macros.rs#L147))
/// and from
/// [this helpful guide to implementing macros](https://medium.com/@phoomparin/a-beginners-guide-to-rust-macros-5c75594498f1).