aboutsummaryrefslogtreecommitdiff
path: root/tests/sortrevnum.at
blob: 3fdae3027b664c3a30e91d0a2306912713b088e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# This file is part of Eclat -*- Autotest -*-
# Copyright (C) 2012, 2013 Sergey Poznyakoff
#
# Eclat is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# Eclat is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Eclat.  If not, see <http://www.gnu.org/licenses/>.

AT_SETUP([Reverse numeric sort])
AT_KEYWORDS([sort sortrev sortrevnum])

AT_DATA([input],
[<input>
  <collection>
    <item>
      <key>7</key>
      <value>syv</value>
    </item>
    <item>
      <key>3</key>
      <value>tre</value>
    </item>
    <item>
      <key>10</key>
      <value>ti</value>
    </item>
    <item>
      <key>6</key>
      <value>seks</value>
    </item>
    <item>
      <key>1</key>
      <value>en</value>
    </item>
  </collection>
</input>
])

AT_DATA([prog],[sort(.input.collection,".item.key","nr");
dump(.);
])

AT_CHECK([tforlan prog input|trws],
[0],
[.input.collection.item.key: "10"
.input.collection.item.value: "ti"
.input.collection.item.key: "7"
.input.collection.item.value: "syv"
.input.collection.item.key: "6"
.input.collection.item.value: "seks"
.input.collection.item.key: "3"
.input.collection.item.value: "tre"
.input.collection.item.key: "1"
.input.collection.item.value: "en"
])

AT_CLEANUP

    

Return to:

Send suggestions and report system problems to the System administrator.