mirror of
https://git.freebsd.org/ports.git
synced 2025-05-31 10:26:28 -04:00
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
12 lines
545 B
Text
12 lines
545 B
Text
File::Slurp::Tree provides functions for slurping and emitting trees of files
|
|
and directories.
|
|
|
|
# an example of use in a test suite
|
|
use Test::More tests => 1;
|
|
use File::Slurp::Tree;
|
|
is_deeply( slurp_tree( "t/some_path" ), { foo => {}, bar => "sample\n" },
|
|
"some_path contains a directory called foo, and a file bar" );
|
|
|
|
The tree data structure is a hash of hashes. The keys of each hash are names of
|
|
directories or files. Directories have hash references as their value, files
|
|
have a scalar which holds the contents of the file.
|