glark 1.10.0 → 1.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,16 +0,0 @@
1
- #!/usr/bin/ruby -w
2
- # -*- ruby -*-
3
-
4
- require 'glark/app/tc'
5
-
6
- module Glark
7
- class DumpTestCase < AppTestCase
8
- def test_dump
9
- fname = ''
10
- expected = [
11
- " 13",
12
- ]
13
- # run_app_test expected, [ '--dump' ], fname
14
- end
15
- end
16
- end
@@ -1,27 +0,0 @@
1
- #!/usr/bin/ruby -w
2
- # -*- ruby -*-
3
-
4
- require 'glark/app/tc'
5
-
6
- module Glark
7
- class FilterSpecTestCase < AppTestCase
8
- def xxxtest_match_name_match_ext
9
- dirname = '/proj/org/incava/glark/test/resources'
10
- expected = [
11
- '/proj/org/incava/glark/test/resources/rcfile.txt',
12
- ' 1 # comment here',
13
- ' 2 highlight: single',
14
- ' 4 local-config-files: true',
15
- ' 7 ignore-case: true',
16
- ' 10 text-color-3: underline magenta',
17
- '/proj/org/incava/glark/test/resources/textfile.txt',
18
- ' 2 -rw-r--r-- 1 jpace jpace 126084 2010-12-04 15:24 01-TheKnightsTale.txt',
19
- ' 7 -rw-r--r-- 1 jpace jpace 71054 2010-12-04 15:24 06-TheWifeOfBathsTale.txt',
20
- ' 11 -rw-r--r-- 1 jpace jpace 65852 2010-12-04 15:24 10-TheMerchantsTale.txt',
21
- ' 14 -rw-r--r-- 1 jpace jpace 15615 2010-12-04 15:24 13-TheDoctorsTale.txt',
22
- ' 21 -rw-r--r-- 1 jpace jpace 45326 2010-12-04 15:24 20-TheNunsPriestsTale.txt',
23
- ]
24
- run_app_test expected, [ '-r', '--match-name', 'a', '--match-ext', 'rb', 't.*e' ], dirname
25
- end
26
- end
27
- end