summaryrefslogtreecommitdiff
path: root/qa/qa/specs/runner.rb
blob: f98b8f88e9ae018ae0813b8dbb79f51203c8246d (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
26
27
28
require 'rspec/core'

module QA
  module Specs
    class Runner < Scenario::Template
      attr_accessor :tty, :tags, :files

      def initialize
        @tty = false
        @tags = []
        @files = ['qa/specs/features']
      end

      def perform
        args = []
        args.push('--tty') if tty
        tags.to_a.each { |tag| args.push(['-t', tag.to_s]) }
        args.push(files)

        Specs::Config.perform

        RSpec::Core::Runner.run(args.flatten, $stderr, $stdout).tap do |status|
          abort if status.nonzero?
        end
      end
    end
  end
end