summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/sub_menus/super_sidebar/plan.rb
blob: ca81837b2e227a5cb37ee684c1552a5c5a099f63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

module QA
  module Page
    module Project
      module SubMenus
        module SuperSidebar
          module Plan
            def self.included(base)
              super

              base.class_eval do
                include QA::Page::SubMenus::SuperSidebar::Plan
              end
            end

            def go_to_requirements
              open_plan_submenu("Requirements")
            end
          end
        end
      end
    end
  end
end