Moving code around and renaming files.

This commit is contained in:
Branimir Karadžić
2017-07-15 20:58:27 -07:00
parent 939d5e2681
commit d4906fd3bd
25 changed files with 557 additions and 490 deletions

View File

@@ -116,3 +116,9 @@ TEST_CASE("FilePath", "")
REQUIRE(test.absolute == fp.isAbsolute() );
};
}
TEST_CASE("FilePath temp", "")
{
bx::FilePath tmp(bx::TempDir::Tag);
REQUIRE(0 != bx::strCmp(".", tmp.getPath() ) );
}