Sha256: f6fb74ec27461c58690d7fea6fa45bfadb28013da048b41cd0971a9924050a66
Contents?: true
Size: 1.69 KB
Versions: 1
Compression:
Stored size: 1.69 KB
Contents
# -*- coding: utf-8 -*- require 'turnip_formatter/step' module TurnipFormatter module Scenario include RSpec::Core::BacktraceFormatter class NotExistStepsInformationError < ::StandardError; end class NoFeatureFileError < ::StandardError; end # # @param [RSpec::Core::Example] example # def initialize(example) @example = example clean_backtrace end def validation raise NotExistStepsInformationError unless example.metadata.member?(:turnip) raise NoFeatureFileError unless feature_file_path.end_with?('.feature') end def steps @steps ||= descriptions.map do |desc| TurnipFormatter::Step.new(example, desc) end end def id "step_" + object_id.to_s end # # @return [String] scenario name # def name example.example_group.description end # # @return [String] scenario status ('passed', 'failed' or 'pending') # def status example.execution_result[:status] end # # @return [String] scenario run time # def run_time example.execution_result[:run_time] end def feature_name example.example_group.metadata[:example_group][:example_group][:description] end def feature_file_path example.metadata[:file_path] end def tags example.metadata[:turnip][:tags] end def example @example end private def descriptions example.metadata[:turnip][:steps] end def clean_backtrace return if example.exception.nil? formatted = format_backtrace(example.exception.backtrace, example.metadata) example.exception.set_backtrace(formatted) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
turnip_formatter-0.1.1 | lib/turnip_formatter/scenario.rb |