Update EPP doc

This commit is contained in:
Martin Lensment 2014-12-11 18:19:24 +02:00
parent 8b83b547dd
commit e1fafbcedd
3 changed files with 5483 additions and 5338 deletions

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,5 +1,5 @@
class EppDoc class EppDoc
RSpec::Core::Formatters.register self, :start, :example_started, :example_passed, :example_pending RSpec::Core::Formatters.register self, :start
def initialize(output) def initialize(output)
@output = output @output = output
@ -15,20 +15,4 @@ class EppDoc
def example_started(notification) def example_started(notification)
@output.puts "### #{notification.example.full_description} \n\n" @output.puts "### #{notification.example.full_description} \n\n"
end end
def example_passed(_example)
# dash = '-' * 48
# @output.puts "#{dash}PASS#{dash}\n\n"
end
def example_failed(_example)
# dash = '-' * 48
# @output.puts "#{dash}FAIL#{dash}\n\n"
end
def example_pending(_example)
# dash_1 = '-' * 47
# dash_2 = '-' * 46
# @output.puts "#{dash_1}PENDING#{dash_2}\n\n"
end
end end