1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

tests: typo

This commit is contained in:
Michael Debertol 2021-06-01 23:06:51 +02:00
parent a323e9cda1
commit fc2b61eb96

View file

@ -50,14 +50,14 @@ macro_rules! new_ucmd {
/// Convenience macro for acquiring a [`UCommand`] builder and a test path. /// Convenience macro for acquiring a [`UCommand`] builder and a test path.
/// ///
/// Returns a tuple containing the following: /// Returns a tuple containing the following:
/// - an [`AsPath`] that points to a unique temporary test directory /// - an [`AtPath`] that points to a unique temporary test directory
/// - a [`UCommand`] builder for invoking the binary to be tested /// - a [`UCommand`] builder for invoking the binary to be tested
/// ///
/// This macro is intended for quick, single-call tests. For more complex tests /// This macro is intended for quick, single-call tests. For more complex tests
/// that require multiple invocations of the tested binary, see [`TestScenario`] /// that require multiple invocations of the tested binary, see [`TestScenario`]
/// ///
/// [`UCommand`]: crate::tests::common::util::UCommand /// [`UCommand`]: crate::tests::common::util::UCommand
/// [`AsPath`]: crate::tests::common::util::AsPath /// [`AtPath`]: crate::tests::common::util::AtPath
/// [`TestScenario]: crate::tests::common::util::TestScenario /// [`TestScenario]: crate::tests::common::util::TestScenario
#[macro_export] #[macro_export]
macro_rules! at_and_ucmd { macro_rules! at_and_ucmd {