summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests/FunctionalTests/tickets/tests')
-rw-r--r--tests/FunctionalTests/tickets/tests/Ticket622TestCase.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/FunctionalTests/tickets/tests/Ticket622TestCase.php b/tests/FunctionalTests/tickets/tests/Ticket622TestCase.php
new file mode 100644
index 00000000..61b7d314
--- /dev/null
+++ b/tests/FunctionalTests/tickets/tests/Ticket622TestCase.php
@@ -0,0 +1,18 @@
+<?php
+
+class Ticket622TestCase extends SeleniumTestCase
+{
+ function test()
+ {
+ $base="ctl0_Content_";
+ $this->open('tickets/index.php?page=Ticket622');
+ $this->assertTitle("Verifying Ticket 622");
+
+ $this->click($base.'ctl0');
+ $this->pause(800);
+ $this->assertAttribute($base.'ALB@style','null');
+ $this->assertAttribute('css=span#acb span@style','null');
+ $this->assertAttribute('css=span#arb span@style','null');
+ }
+}
+?>