apjanke / octave-testify

New BIST (Built-In Self Test) functions for GNU Octave
GNU General Public License v3.0
4 stars 2 forks source link

runtests: indent "no tests" list #40

Closed cbm755 closed 5 years ago

cbm755 commented 5 years ago

This makes it match the "processing files" list which is also indented by two spaces.

cbm755 commented 5 years ago

Output:

>> runtests('@symfun')
Processing files in /home/cbm/work/octsympy/octsympy.git/inst/@symfun:

  argnames.m .................................................. PASS      3/3   
  diff.m ...................................................... PASS      2/2   
  formula.m ................................................... PASS      3/3   
  int.m ....................................................... PASS      7/7   
  isequal.m ................................................... PASS      6/6   
  isequaln.m .................................................. PASS      7/7   
  ldivide.m ................................................... PASS      1/1   
  minus.m ..................................................... PASS      4/4   
  mldivide.m .................................................. PASS      1/1   
  mpower.m .................................................... PASS      1/1   
  mrdivide.m .................................................. PASS      1/1   
  mtimes.m .................................................... PASS      1/1   
  numel.m ..................................................... PASS      2/2   
  plus.m ...................................................... PASS      1/1   
  power.m ..................................................... PASS      2/2   
  rdivide.m ................................................... PASS      2/2   
  size.m ...................................................... PASS      2/2   
  subsref.m ................................................... PASS      2/2   
  symvar.m .................................................... PASS      6/6   
  times.m ..................................................... PASS      2/2   
  uminus.m .................................................... PASS      2/2   

The following files in /home/cbm/work/octsympy/octsympy.git/inst/@symfun have no tests:

  private_disp_name.m  symfun.m

The blank line after the list is again to visually match the first list.

apjanke commented 5 years ago

:+1:

Merged.