summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests
diff options
context:
space:
mode:
authormikl <>2008-10-15 18:07:16 +0000
committermikl <>2008-10-15 18:07:16 +0000
commit0c32dad370fb228c36baddd6d7af295aff28f7e8 (patch)
tree31f87fc5afd5601c37f2c081e74af2997f3c3a9c /tests/FunctionalTests/tickets/tests
parent3dc2a1c23cefab8eec0fc564ac7ca421e8e357e1 (diff)
Fixed #922
Diffstat (limited to 'tests/FunctionalTests/tickets/tests')
-rw-r--r--tests/FunctionalTests/tickets/tests/Ticket922TestCase.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/FunctionalTests/tickets/tests/Ticket922TestCase.php b/tests/FunctionalTests/tickets/tests/Ticket922TestCase.php
new file mode 100644
index 00000000..8420c10d
--- /dev/null
+++ b/tests/FunctionalTests/tickets/tests/Ticket922TestCase.php
@@ -0,0 +1,18 @@
+<?php
+
+class Ticket922TestCase extends SeleniumTestCase
+{
+ function test()
+ {
+ $this->open('tickets/index.php?page=Ticket922');
+ $this->assertTitle("Verifying Ticket 922");
+ $base = 'ctl0_Content_';
+
+ $this->type($base.'Text', 'two words');
+ $this->clickAndWait('ctl0$Content$ctl0');
+ $this->assertText($base.'Result','two words');
+
+ }
+}
+
+?>