Skip to content

Commit 4f71f11

Browse files
committed
fs test
1 parent e13cd7c commit 4f71f11

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

tests/fs.test.cpp

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#include <catch.hpp>
2+
#include <iostream>
3+
#include "../kit/fs/fs.h"
4+
using namespace std;
5+
6+
TEST_CASE("fs","[fs]") {
7+
SECTION("usage") {
8+
cout << fs::homedir() << endl;
9+
cout << fs::configdir() << endl;
10+
cout << fs::configdir("test") << endl;
11+
}
12+
}
13+

0 commit comments

Comments
 (0)