aboutsummaryrefslogtreecommitdiff
path: root/tests/path/driver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tests/path/driver.cxx')
-rw-r--r--tests/path/driver.cxx8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/path/driver.cxx b/tests/path/driver.cxx
index f4b145a..ad76940 100644
--- a/tests/path/driver.cxx
+++ b/tests/path/driver.cxx
@@ -40,7 +40,7 @@ main ()
assert (path ("C:\\tmp\\foo\\").string () == "C:\\tmp\\foo");
#endif
- // abslute/relative/root
+ // absolute/relative/root
//
#ifndef _WIN32
assert (path ("/").root ());
@@ -301,6 +301,12 @@ main ()
path ("foo/bar/baz"));
#endif
+ assert (path::temp_directory ().absolute ());
+ assert (wpath::temp_directory ().absolute ());
+
+ assert (path::home ().absolute ());
+ assert (wpath::home ().absolute ());
+
/*
path p ("../foo");
p.complete ();