summaryrefslogtreecommitdiff
path: root/qa/qa/runtime/example.rb
blob: cd2119762f53edcdeb2a70e91662497a662fb190 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module QA
  module Runtime
    module Example
      extend self

      attr_accessor :current

      def location
        current.respond_to?(:location) ? current.location : 'unknown'
      end
    end
  end
end