Class: Specdown::Reporter

Inherits:
Object
  • Object
show all
Defined in:
lib/specdown/runner/reporter.rb

Instance Method Summary collapse

Instance Method Details

#failureObject

Raises:

  • (NotImplementedError)


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

def failure
  raise NotImplementedError
end

Raises:

  • (NotImplementedError)


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

def print_failure(test)
  raise NotImplementedError
end

Raises:

  • (NotImplementedError)


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

def print_success(test)
  raise NotImplementedError
end

Raises:

  • (NotImplementedError)


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

def print_summary(runners)
  raise NotImplementedError
end

#successObject

Raises:

  • (NotImplementedError)


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

def success
  raise NotImplementedError
end

#summary(runners) ⇒ Object



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

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