diff options
author | Kris Maglione <maglione.k@gmail.com> | 2011-01-26 16:22:29 -0500 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2011-01-26 16:22:29 -0500 |
commit | 218562e21b0ab73b58102653543c5107ee23c2bc (patch) | |
tree | c5fe08c6e4c7675179fbb31b38cb10547417d473 /common/tests/functional/testShellCommands.js | |
parent | a6fe97b787007bba0ea5e310aa70fc5853ce4173 (diff) | |
download | pentadactyl-218562e21b0ab73b58102653543c5107ee23c2bc.tar.gz |
Fix tab number updates in FF36. Closes issue 300.
Diffstat (limited to 'common/tests/functional/testShellCommands.js')
-rw-r--r-- | common/tests/functional/testShellCommands.js | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/common/tests/functional/testShellCommands.js b/common/tests/functional/testShellCommands.js deleted file mode 100644 index 0a4ae7c1..00000000 --- a/common/tests/functional/testShellCommands.js +++ /dev/null @@ -1,33 +0,0 @@ -var dactyllib = require("dactyl"); - -var setupModule = function (module) { - controller = mozmill.getBrowserController(); - dactyl = new dactyllib.Controller(controller); -}; - -var teardownTest = function (test) { - dactyl.closeMessageWindow(); -}; - -var testRunCommand_ExecutingOutputCommand_OutputDisplayed = function () { - const EXPECTED_OUTPUT = "foobar"; - const COMMAND = "run echo " + EXPECTED_OUTPUT; - - dactyl.runExCommand(COMMAND); - - dactyl.assertMessageWindow(RegExp(EXPECTED_OUTPUT)); -}; - -var testRunCommand_RepeatArg_LastCommandRepeated = function () { - const EXPECTED_OUTPUT = /foobar$/; // XXX - const COMMAND = "run echo 'foobar'"; - const REPEAT_COMMAND = "run!"; - - dactyl.runExCommand(COMMAND); - dactyl.closeMessageWindow(); - dactyl.runExCommand(REPEAT_COMMAND); - - dactyl.assertMessageWindow(EXPECTED_OUTPUT); -}; - -// vim: sw=4 ts=8 et: |