Class: RspecTestlinkExportCases

Inherits:
RSpec::Core::Formatters::BaseFormatter
  • Object
show all
Defined in:
lib/rspec_testlink_export_cases.rb

Instance Method Summary collapse

Instance Method Details

#dump_summary(notification) ⇒ Object



22
23
24
25
# File 'lib/rspec_testlink_export_cases.rb', line 22

def dump_summary(notification)
  @summary_notification = notification
  xml_dump
end

#start(notification) ⇒ Object



12
13
14
15
16
# File 'lib/rspec_testlink_export_cases.rb', line 12

def start(notification)
  @start_notification = notification
  @started = Time.now
  super
end

#stop(notification) ⇒ Object



18
19
20
# File 'lib/rspec_testlink_export_cases.rb', line 18

def stop(notification)
  @examples_notification = notification
end