Module: Specdown::Reporter

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

Instance Method Summary collapse

Instance Method Details

Raises:

  • (NotImplementedError)


51
52
53
# File 'lib/specdown/reporter.rb', line 51

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)


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

def print_pending(test)
  raise NotImplementedError
end

Raises:

  • (NotImplementedError)


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

def print_readme_end(readme)
  raise NotImplementedError
end

Raises:

  • (NotImplementedError)


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

def print_readme_start(readme)
  raise NotImplementedError
end

Raises:

  • (NotImplementedError)


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

def print_readme_summary(readme)
  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(readmes)
  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

Raises:

  • (NotImplementedError)


47
48
49
# File 'lib/specdown/reporter.rb', line 47

def print_undefined(test)
  raise NotImplementedError
end

#summary(readmes) ⇒ Object



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

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