summaryrefslogtreecommitdiffstats
path: root/xpcom/tests/unit/test_bug745466.js
diff options
context:
space:
mode:
Diffstat (limited to 'xpcom/tests/unit/test_bug745466.js')
-rw-r--r--xpcom/tests/unit/test_bug745466.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/xpcom/tests/unit/test_bug745466.js b/xpcom/tests/unit/test_bug745466.js
new file mode 100644
index 000000000..22a911ac5
--- /dev/null
+++ b/xpcom/tests/unit/test_bug745466.js
@@ -0,0 +1,6 @@
+Components.utils.import("resource://gre/modules/FileUtils.jsm");
+
+function run_test()
+{
+ do_check_true(FileUtils.File("~").equals(FileUtils.getDir("Home", [])));
+}