aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/ascdesc.py
blob: 6b514f4ef079621c25b5ecf51f5ef3c808400316 (plain)
1
2
3
4
5
6
7
8
9
10
11
import unittest
import base

class Suite(base.Base):
    def test_1(self):
        """Test case 1"""
        self.start('Ascdesc/main')
        el = self.xpath('p[1]')
        self.assertEqual("1; 2; 3;", el.text)
        el = self.xpath('p[2]')
        self.assertEqual("3; 2; 1;", el.text)