summaryrefslogtreecommitdiff
path: root/tests/a_case_of_the_splits.py
diff options
context:
space:
mode:
authorGravatar Artyom Shalkhakov <artyom.shalkhakov@gmail.com>2018-12-22 14:15:51 +0200
committerGravatar Artyom Shalkhakov <artyom.shalkhakov@gmail.com>2018-12-22 14:15:51 +0200
commit1a39672b01dc236068475e2d1a8a6f21814cba7e (patch)
tree2c6bf98ad4b8129f8c130d24fe8f6bc78cda24fe /tests/a_case_of_the_splits.py
parent91c0e37b0ddc8495e31bd653b8bc363fd14f4375 (diff)
More tests.
Diffstat (limited to 'tests/a_case_of_the_splits.py')
-rw-r--r--tests/a_case_of_the_splits.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/a_case_of_the_splits.py b/tests/a_case_of_the_splits.py
new file mode 100644
index 00000000..9a78e2fb
--- /dev/null
+++ b/tests/a_case_of_the_splits.py
@@ -0,0 +1,15 @@
+import unittest
+import base
+
+class Suite(base.Base):
+ def test_1(self):
+ """Test case 1"""
+ self.start('main')
+ reg = self.xpath('button')
+ # click a couple of times
+ reg.click()
+ reg.click()
+ # we should get HTML spliced into HTML as-is (properly escaped even!)
+ span = self.xpath('span')
+ txt = span.text
+ self.assertRegex(txt, ".*\\(0\\).* :: .*\\(1\\).* :: \\[\\]")