Sha256: 0bcdd31c5d6bba93288ac21762ad6eb766c96b85e0e23cf530f669153204527c
Contents?: true
Size: 1.44 KB
Versions: 16
Compression:
Stored size: 1.44 KB
Contents
module Jasmine class Result def self.map_raw_results(raw_results) raw_results.map { |r| new(r) } end def initialize(attrs) @show_full_stack_trace = attrs["show_full_stack_trace"] @status = attrs["status"] @full_name = attrs["fullName"] @description = attrs["description"] @failed_expectations = map_failures(attrs.fetch("failedExpectations", [])) @deprecation_warnings = map_failures(attrs.fetch("deprecationWarnings", [])) @suite_name = full_name.slice(0, full_name.size - description.size - 1) @pending_reason = attrs["pendingReason"] end def succeeded? status == 'passed' end def failed? status == 'failed' end def pending? status == 'pending' end def disabled? status == 'disabled' end attr_reader :full_name, :description, :failed_expectations, :deprecation_warnings, :suite_name, :pending_reason private attr_reader :status, :show_full_stack_trace def map_failures(failures) failures.map do |e| if e["stack"] if show_full_stack_trace stack = e["stack"] else stack = e["stack"].split("\n").slice(0, 7).join("\n") end else stack = "No stack trace present." end Failure.new(e["message"], stack, e["globalErrorType"]) end end class Failure < Struct.new(:message, :stack, :globalErrorType); end end end
Version data entries
16 entries across 16 versions & 1 rubygems