Module: Specdown::Reporter

Included in:
TerminalReporter, TextReporter
Defined in:
lib/specdown/reporter.rb

Instance Method Summary collapse

Instance Method Details

Raises:

  • (NotImplementedError)


43
44
45
# File 'lib/specdown/reporter.rb', line 43

def print_end
  raise NotImplementedError
end

Raises:

  • (NotImplementedError)


39
40
41
# File 'lib/specdown/reporter.rb', line 39

def print_failure(test)
  raise NotImplementedError
end

Raises:

  • (NotImplementedError)


19
20
21
# File 'lib/specdown/reporter.rb', line 19

def print_runner_end(runner)
  raise NotImplementedError
end

Raises:

  • (NotImplementedError)


11
12
13
# File 'lib/specdown/reporter.rb', line 11

def print_runner_start(runner)
  raise NotImplementedError
end

Raises:

  • (NotImplementedError)


15
16
17
# File 'lib/specdown/reporter.rb', line 15

def print_runner_summary(runner)
  raise NotImplementedError
end

Raises:

  • (NotImplementedError)


7
8
9
# File 'lib/specdown/reporter.rb', line 7

def print_start
  raise NotImplementedError
end

Raises:

  • (NotImplementedError)


35
36
37
# File 'lib/specdown/reporter.rb', line 35

def print_success(test)
  raise NotImplementedError
end

Raises:

  • (NotImplementedError)


31
32
33
# File 'lib/specdown/reporter.rb', line 31

def print_summary(runners)
  raise NotImplementedError
end

Raises:

  • (NotImplementedError)


27
28
29
# File 'lib/specdown/reporter.rb', line 27

def print_test_end(test)
  raise NotImplementedError
end

Raises:

  • (NotImplementedError)


23
24
25
# File 'lib/specdown/reporter.rb', line 23

def print_test_start(test)
  raise NotImplementedError
end

#summary(runners) ⇒ Object



3
4
5
# File 'lib/specdown/reporter.rb', line 3

def summary(runners)
  ReportSummary.new(runners)
end