aboutsummaryrefslogtreecommitdiff
path: root/exampleData/ruleSets/reportOnSampleText.json
blob: 0775bb3171b5e308be291300610ab502356ab4ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ 'name': 'reportOnSampleText',
  'description': 'test',
  'rules': [
//---
  { 'id': 17041501
  , 'name': 'Test rule'
  , 'description': 'An empty test rule'
  , 'rule': function() {
       fiveui.query('p').each(
         function(idx, elt) {
           if ($(elt).text().indexOf('Sample text') != -1) {
             report('test error', elt);
           }
         });
    }
  }//,
 //----
 ]
}