summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests
diff options
context:
space:
mode:
authortof <>2007-09-28 09:34:07 +0000
committertof <>2007-09-28 09:34:07 +0000
commit3c83939b045813d691d4b701b71fd4d01c8492b6 (patch)
tree13a911343ac7eda69c09aa251c9be0d61ad2aee1 /tests/FunctionalTests/tickets/tests
parent75a968c94815dd7200d9470d47bd01a35f60b833 (diff)
Add a test for Ticket #691
Diffstat (limited to 'tests/FunctionalTests/tickets/tests')
-rw-r--r--tests/FunctionalTests/tickets/tests/Ticket691TestCase.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/FunctionalTests/tickets/tests/Ticket691TestCase.php b/tests/FunctionalTests/tickets/tests/Ticket691TestCase.php
new file mode 100644
index 00000000..12371e74
--- /dev/null
+++ b/tests/FunctionalTests/tickets/tests/Ticket691TestCase.php
@@ -0,0 +1,17 @@
+<?php
+class Ticket691TestCase extends SeleniumTestCase
+{
+ function test()
+ {
+ $base = 'ctl0_Content_';
+ $this->open('tickets/index.php?page=Ticket691');
+ $this->assertTitle("Verifying Ticket 691");
+
+ $this->click($base."List_c2");
+ $this->pause(800);
+ $this->assertText($base."Title", "Thanks");
+ $this->assertText($base."Result", "You vote 3");
+ }
+
+}
+?> \ No newline at end of file