Sha256: 9b17bbb7c7f7728b997ad47111828b95efed3cec2aa41efb1a0c877da17dee01

Contents?: true

Size: 1.71 KB

Versions: 5

Compression:

Stored size: 1.71 KB

Contents

require 'rspec/core/formatters/base_text_formatter'

module RSpec
  module Core
    module Formatters

      class DocumentationFormatter < BaseTextFormatter

        def initialize(output)
          super(output)
          @group_level = 0
        end

        def example_group_started(example_group)
          super(example_group)

          output.puts if @group_level == 0
          output.puts "#{'  ' * @group_level}#{example_group.description}"

          @group_level += 1
        end

        def example_group_finished(example_group)
          @group_level -= 1
        end

        def example_passed(example)
          super(example)
          output.puts passed_output(example)
        end

        def example_pending(example)
          super(example)
          output.puts pending_output(example, example.execution_result[:pending_message])
        end

        def example_failed(example)
          super(example)
          output.puts failure_output(example, example.execution_result[:exception])
        end

        def failure_output(example, exception)
          red("#{current_indentation}#{example.description} (FAILED - #{next_failure_index})")
        end

        def next_failure_index
          @next_failure_index ||= 0
          @next_failure_index += 1
        end

        def passed_output(example)
          green("#{current_indentation}#{example.description}")
        end

        def pending_output(example, message)
          yellow("#{current_indentation}#{example.description} (PENDING: #{message})")
        end

        def current_indentation
          '  ' * @group_level
        end

        def example_group_chain
          example_group.ancestors.reverse
        end

      end

    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rspec-core-2.4.0 lib/rspec/core/formatters/documentation_formatter.rb
rspec-core-2.3.1 lib/rspec/core/formatters/documentation_formatter.rb
rspec-core-2.3.0 lib/rspec/core/formatters/documentation_formatter.rb
rspec-core-2.2.1 lib/rspec/core/formatters/documentation_formatter.rb
rspec-core-2.2.0 lib/rspec/core/formatters/documentation_formatter.rb