summaryrefslogtreecommitdiff
path: root/t/rel-abs.t
diff options
context:
space:
mode:
Diffstat (limited to 't/rel-abs.t')
-rw-r--r--t/rel-abs.t29
1 files changed, 29 insertions, 0 deletions
diff --git a/t/rel-abs.t b/t/rel-abs.t
new file mode 100644
index 0000000..540d5b4
--- /dev/null
+++ b/t/rel-abs.t
@@ -0,0 +1,29 @@
+use 5.008001;
+use strict;
+use warnings;
+use Test::More 0.96;
+
+use lib 't/lib';
+use TestUtils qw/exception/;
+
+use Path::Tiny;
+
+my $rel1 = path(".");
+my $abs1 = $rel1->absolute;
+is( $abs1->absolute, $abs1, "absolute of absolute is identity" );
+
+my $rel2 = $rel1->child("t");
+my $abs2 = $rel2->absolute;
+
+is( $rel2->absolute($abs1), $abs2, "absolute on base" );
+
+done_testing;
+#
+# This file is part of Path-Tiny
+#
+# This software is Copyright (c) 2014 by David Golden.
+#
+# This is free software, licensed under:
+#
+# The Apache License, Version 2.0, January 2004
+#