Sha256: f42765d81f9299fc3a2c51c45adc9c64bf00260efdbce2348e74fc2fa0680586

Contents?: true

Size: 435 Bytes

Versions: 1

Compression:

Stored size: 435 Bytes

Contents

=begin
  Este módulo ejecuta tareas de apoyo
=end

module Liri
  module Task
    class << self
      def tests_files(source_code_folder_path)
        source_code = Liri::Common::SourceCode.new(source_code_folder_path,'', Liri.compression_class, Liri.unit_test_class)
        source_code.all_tests
      end

      def tests_count(source_code_folder_path)
        tests_files(source_code_folder_path).size
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
liri-0.3.1 lib/task.rb