Method: Auger::Project#tests

Defined in:
lib/auger/project.rb

#testsObject

return list of all test objects for this project



63
64
65
66
67
68
69
# File 'lib/auger/project.rb', line 63

def tests
  @connections.map do |connection|
    connection.requests.map do |request|
      request.tests.map { |test| test }
    end
  end.flatten
end