perl/ext/Sys-Hostname
Lukas Mai 8b1b46cdfe various tests: replace BEGIN/require/import by use
That is, turn

    BEGIN {
        require Foo;
        Foo->import(...);
    }

into

    use Foo ...;

(Except for a few tests that did the `require Config; Config->import`
dance without actually using `%Config` anywhere, so I just deleted the
import code.)
2025-03-19 05:21:17 +01:00
..