Is there a deeper meaning that in some inspec profiles a title is placed at the beginning within the control rb files?
inspec
|-controls
|-example.rb
|-meta.rb
|-libraries
inspec.yaml
The example.rb file looks like:
# copyright: 2015, Chef Software, Inc.
title 'Example' # <- where will this title be displayed or shown?
control 'example-01' do
title 'title for example-01' # <- this is understandable for me
...
end
Will this title "Example" be given out somewhere at some point?