\x20\40\x20\40 HEX
HEX
Server: Apache
System: Linux web1.jenscom.net 4.18.0-553.111.1.el8_10.x86_64 #1 SMP Sun Mar 8 20:06:07 EDT 2026 x86_64
User: sps (1059)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: /home/.cpan/build/ExtUtils-MakeMaker-7.70-0/t/installed_file.t
#!/usr/bin/perl -w

# Test MM->_installed_file_for_module()

BEGIN {
    chdir 't' if -d 't';
}

use strict;
use warnings;
use less;

use lib './lib';
use ExtUtils::MakeMaker;
use Test::More tests => 4;
use File::Spec;


sub path_is {
    my($have, $want, $name) = @_;

    $have = File::Spec->canonpath($have);
    $want = File::Spec->canonpath($want);

    my $builder = Test::More->builder;
    return $builder->is_eq( $have, $want, $name );
}

# Test when a module is not installed
{
    ok !MM->_installed_file_for_module("aaldkfjaldj"), "Module not installed";
    ok !MM->_installed_file_for_module("aaldkfjaldj::dlajldkj");
}

# Try a single name module
{
    my $want = $INC{'less.pm'};
    path_is( MM->_installed_file_for_module("less"), $want,  "single name module" );
}

# And a tuple
{
    my $want = $INC{"Test/More.pm"};
    path_is( MM->_installed_file_for_module("Test::More"), $want, "Foo::Bar style" );
}