File: issue36.xml

package info (click to toggle)
apertium-lex-tools 0.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,212 kB
  • sloc: python: 5,788; cpp: 3,086; xml: 395; makefile: 86; awk: 63; sh: 61
file content (22 lines) | stat: -rw-r--r-- 656 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<rules>
  <rule c="check that we can select empty lemmas">
    <match lemma="toempty" tags="adv">
      <select lemma="" tags="adv"/>
    </match>
  </rule>
  <!-- <rule c="empty lemmas without tags TODO"> -->
  <!--   <match lemma="emptier" tags="adv"> -->
  <!--     <select lemma=""/> -->
  <!--   </match> -->
  <!-- </rule> -->
  <rule c="but unspecified lemmas should be equivalent to star lemmas">
    <match tags="vblex.*">
      <select lemma="pickme"/>
    </match>
  </rule>
  <rule c="so star lemmas should be equivalent to unspecified lemmas">
    <match lemma="*" tags="vblex.*">
      <select lemma="andme"/>
    </match>
  </rule>
</rules>