Add simple test for PBD::find_files_matching_pattern

This helped fix a silly cut and paste error in pbd/file_utils.cc so
might as well included it.
This commit is contained in:
Tim Mayberry 2014-06-24 21:27:37 +10:00 committed by Paul Davis
parent b3ab6e79f1
commit 9c16e67b06
2 changed files with 14 additions and 1 deletions

View file

@ -7,12 +7,13 @@ class FilesystemTest : public CppUnit::TestFixture
CPPUNIT_TEST (testPathIsWithin);
CPPUNIT_TEST (testCopyFileASCIIFilename);
CPPUNIT_TEST (testCopyFileUTF8Filename);
CPPUNIT_TEST (testFindFilesMatchingPattern);
CPPUNIT_TEST_SUITE_END ();
public:
void testPathIsWithin ();
void testCopyFileASCIIFilename ();
void testCopyFileUTF8Filename ();
void testFindFilesMatchingPattern ();
};