Sha256: 86541d2e0f5c0e8cb9edddd56ce1122acd3da11cac34a40169f2b0c8050f9cc2

Contents?: true

Size: 356 Bytes

Versions: 1

Compression:

Stored size: 356 Bytes

Contents

module AirborneReport
  module Storage
    module Tests
      class << self
        def find_or_create(location)
          @tests ||= {}
          unless @tests[location]
            @tests[location] = []
          end
          @tests[location]
        end

        def all
          @tests ||= {}
          @tests
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
airborne_report-0.2.0 lib/airborne_report/storage/tests.rb