module AirborneReport::Storage::Tests

Public Class Methods

all() click to toggle source
# File lib/airborne_report/storage/tests.rb, line 13
def all
  @tests ||= {}
  @tests
end
find_or_create(location) click to toggle source
# File lib/airborne_report/storage/tests.rb, line 5
def find_or_create(location)
  @tests ||= {}
  unless @tests[location]
    @tests[location] = []
  end
  @tests[location]
end