Finished? Ready for merge at least.
This commit is contained in:
parent
5d1faff793
commit
82e9bf8448
45 changed files with 5112 additions and 513 deletions
10
t/Storage.t
10
t/Storage.t
|
|
@ -227,6 +227,16 @@ ok (-e $storage1->getPath("testfile-hash.file"), 'addFileFromHashRef creates fil
|
|||
my $thawedHash = $storage1->getFileContentsAsHashref('testfile-hash.file');
|
||||
cmp_deeply($storageHash, $thawedHash, 'getFileContentsAsHashref: thawed hash correctly');
|
||||
|
||||
####################################################
|
||||
#
|
||||
# copyFile
|
||||
#
|
||||
####################################################
|
||||
|
||||
$storage1->copyFile("testfile-hash.file", "testfile-hash-copied.file");
|
||||
ok (-e $storage1->getPath("testfile-hash-copied.file"),'copyFile created file with new name');
|
||||
ok (-e $storage1->getPath("testfile-hash.file"), "copyFile original file still exists");
|
||||
|
||||
####################################################
|
||||
#
|
||||
# renameFile
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue