]> gitweb.factorcode.org Git - factor.git/blob - extra/ctags/ctags-tests.factor
b276c6d786b41762bd8f99ce5f755f36191e706c
[factor.git] / extra / ctags / ctags-tests.factor
1 USING: kernel ctags tools.test io.backend sequences arrays prettyprint ;
2 IN: ctags.tests
3
4 [ t ] [
5   91
6   { if  { "resource:extra/unix/unix.factor" 91 } } ctag-lineno =
7 ] unit-test
8
9 [ t ] [
10   "resource:extra/unix/unix.factor"
11   { if  { "resource:extra/unix/unix.factor" 91 } } ctag-path =
12 ] unit-test
13
14 [ t ] [
15   \ if
16   { if  { "resource:extra/unix/unix.factor" 91 } } ctag-word =
17 ] unit-test
18
19 [ t ] [
20   "if\t" "resource:extra/unix/unix.factor" normalize-path "\t91" 3append
21   { if  { "resource:extra/unix/unix.factor" 91 } } ctag =
22 ] unit-test
23
24 [ t ] [
25   "if\t" "resource:extra/unix/unix.factor" normalize-path "\t91" 3append 1array
26   { { if  { "resource:extra/unix/unix.factor" 91 } } } ctag-strings =
27 ] unit-test