summaryrefslogtreecommitdiff
path: root/qa/qa/scenario/taggable.rb
blob: b63c245bf47269d300ed65f8708acb3399852070 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module QA
  module Scenario
    module Taggable
      def tags(*tags)
        @tags = tags
      end

      def focus
        @tags.to_a
      end
    end
  end
end