[Gambas-user] gb.test IDE integration

Benoît Minisini g4mba5 at gmail.com
Thu May 14 11:40:53 CEST 2020


Le 13/05/2020 à 22:21, Christof Thalhofer a écrit :
> Am 13.05.20 um 11:35 schrieb Benoît Minisini:
> 
>> What for? Just browse all '*.test' files recursively in '.src'.
> 
> "Just" is not an easy task for me. For you, of course, it's a simple thing.
> 
> I am not familiar with browsing the content of source files in directory
> trees for the names of functions and subs and before I try to figure it
> out and need about one day for that ...

$ cd <project directory>
$ find .src -name '*.test' -exec basename {} .test \; | sort

will return the list of test modules, sorted.

I don't know why you need that on the command-line.

-- 
Benoît Minisini


More information about the User mailing list