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

Move unexported macro doctest into unit test #616

Merged
merged 1 commit into from May 18, 2022

Commits on May 17, 2022

  1. Move unexported macro doctest into unit test

    Nightly has begun running doctests for unexported macros as of
    rust-lang/rust#96630, which caused a doctest for
    test_unpack_octets_4 which was previously ignored to be run. This broke
    the CI because macros that are not exported with `#[macro_export]`
    cannot be used from external crates (and thus cannot be doctested). This
    change ignores the doctest and copies the relevant code into a unit
    test.
    David Koloski committed May 17, 2022
    Configuration menu
    Copy the full SHA
    6bfca57 View commit details
    Browse the repository at this point in the history