summaryrefslogtreecommitdiff
path: root/qa/qa/factory/resource/group.rb
blob: a081cd94d399d60dd7bdc94d526718e9ee8e4949 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module QA
  module Factory
    module Resource
      class Group < Factory::Base
        attr_writer :path, :description

        def initialize
          @path = Runtime::Namespace.name
          @description = "QA test run at #{Runtime::Namespace.time}"
        end

        def fabricate!
          Page::Group::New.perform do |group|
            group.set_path(@path)
            group.set_description(@description)
            group.set_visibility('Private')
            group.create
          end
        end
      end
    end
  end
end