summaryrefslogtreecommitdiff
path: root/qa/qa/runtime/namespace.rb
blob: e4910b63a14375d17f5748d901a8515c2e4a6121 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module QA
  module Runtime
    module Namespace
      extend self

      def time
        @time ||= Time.now
      end

      def name
        'qa_test_' + time.strftime('%d_%m_%Y_%H-%M-%S')
      end
    end
  end
end