summaryrefslogtreecommitdiffstats
path: root/tests/path_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/path_test.cpp')
-rw-r--r--tests/path_test.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/path_test.cpp b/tests/path_test.cpp
new file mode 100644
index 0000000..1620703
--- /dev/null
+++ b/tests/path_test.cpp
@@ -0,0 +1,16 @@
+#include <iostream>
+#include <raul/Path.h>
+
+using namespace std;
+
+int
+main()
+{
+ cerr << "1's are good..." << endl << endl;
+
+ cerr << (Path("/").is_parent_of(Path("/foo"))) << endl;
+ cerr << (Path("/foo").is_parent_of(Path("/foo/bar"))) << endl;
+ cerr << !(Path("/foo").is_parent_of(Path("/foo2"))) << endl;
+
+ return 0;
+}