Method: ChefDK::Command::Verify#components_to_test

Defined in:
lib/chef-dk/command/verify.rb

#components_to_testObject



333
334
335
336
337
338
339
340
341
# File 'lib/chef-dk/command/verify.rb', line 333

def components_to_test
  if @components_filter.empty?
    components
  else
    components.select do |component|
      @components_filter.include?(component.name.to_s)
    end
  end
end