diff options
author | Matt A. Tobin <email@mattatobin.com> | 2016-10-16 19:34:53 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2016-10-16 19:34:53 -0400 |
commit | 81805ce3f63e2e4a799bd54f174083c58a9b5640 (patch) | |
tree | 6e13374b213ac9b2ae74c25d8aac875faf71fdd0 /toolkit/devtools/commandline/test/browser_cmd_folder.js | |
parent | 28c8da71bf521bb3ee76f27b8a241919e24b7cd5 (diff) | |
download | palemoon-gre-81805ce3f63e2e4a799bd54f174083c58a9b5640.tar.gz |
Move Mozilla DevTools to Platform - Part 3: Merge the browser/devtools and toolkit/devtools adjusting for directory collisions
Diffstat (limited to 'toolkit/devtools/commandline/test/browser_cmd_folder.js')
-rw-r--r-- | toolkit/devtools/commandline/test/browser_cmd_folder.js | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/toolkit/devtools/commandline/test/browser_cmd_folder.js b/toolkit/devtools/commandline/test/browser_cmd_folder.js new file mode 100644 index 000000000..9ceb38135 --- /dev/null +++ b/toolkit/devtools/commandline/test/browser_cmd_folder.js @@ -0,0 +1,58 @@ +/* Any copyright is dedicated to the Public Domain. +* http://creativecommons.org/publicdomain/zero/1.0/ */ + +// Tests that the folder commands works as they should + +const TEST_URI = "data:text/html;charset=utf-8,cmd-folder"; + +function test() { + helpers.addTabWithToolbar(TEST_URI, function(options) { + return helpers.audit(options, [ + { + setup: 'folder', + check: { + input: 'folder', + hints: ' open', + markup: 'IIIIII', + status: 'ERROR' + }, + }, + { + setup: 'folder open', + check: { + input: 'folder open', + hints: ' [path]', + markup: 'VVVVVVVVVVV', + status: 'VALID' + } + }, + { + setup: 'folder open ~', + check: { + input: 'folder open ~', + hints: '', + markup: 'VVVVVVVVVVVVV', + status: 'VALID' + } + }, + { + setup: 'folder openprofile', + check: { + input: 'folder openprofile', + hints: '', + markup: 'VVVVVVVVVVVVVVVVVV', + status: 'VALID' + } + }, + { + setup: 'folder openprofile WRONG', + check: { + input: 'folder openprofile WRONG', + hints: '', + markup: 'VVVVVVVVVVVVVVVVVVVEEEEE', + status: 'ERROR' + } + } + ]); + }).then(finish, helpers.handleError); +} |