Class: MSpecCI

Inherits:
MSpecScript show all
Defined in:
lib/mspec/commands/mspec-ci.rb

Instance Method Summary collapse

Methods inherited from MSpecScript

config, #config, #custom_options, #custom_register, #entries, #files, get, #initialize, #load, #load_default, main, #register, set, #signals

Constructor Details

This class inherits a constructor from MSpecScript

Instance Method Details

#options(argv = ARGV) ⇒ Object



11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# File 'lib/mspec/commands/mspec-ci.rb', line 11

def options(argv=ARGV)
  options = MSpecOptions.new "mspec ci [options] (FILE|DIRECTORY|GLOB)+", 30, config

  options.doc " Ask yourself:"
  options.doc "  1. How to run the specs?"
  options.doc "  2. How to display the output?"
  options.doc "  3. What action to perform?"
  options.doc "  4. When to perform it?"

  options.doc "\n How to run the specs"
  options.chdir
  options.prefix
  options.configure { |f| load f }
  options.name
  options.pretend
  options.background
  options.unguarded
  options.interrupt

  options.doc "\n How to display their output"
  options.formatters
  options.verbose

  options.doc "\n What action to perform"
  options.actions

  options.doc "\n When to perform it"
  options.action_filters

  options.doc "\n Help!"
  options.version MSpec::VERSION
  options.help

  options.doc "\n Custom options"
  custom_options options

  options.doc "\n How might this work in the real world?"
  options.doc "\n   1. To simply run the known good specs"
  options.doc "\n     $ mspec ci"
  options.doc "\n   2. To run a subset of the known good specs"
  options.doc "\n     $ mspec ci path/to/specs"
  options.doc "\n   3. To start the debugger before the spec matching 'this crashes'"
  options.doc "\n     $ mspec ci --spec-debug -S 'this crashes'"
  options.doc ""

  patterns = options.parse argv
  patterns = config[:ci_files] if patterns.empty?
  @files = files patterns
end

#runObject



61
62
63
64
65
66
67
68
69
70
# File 'lib/mspec/commands/mspec-ci.rb', line 61

def run
  MSpec.register_tags_patterns config[:tags_patterns]
  MSpec.register_files @files
  filter = TagFilter.new(:exclude,
      "fails", "critical", "unstable", "incomplete", "unsupported")
  filter.register

  MSpec.process
  exit MSpec.exit_code
end