Sha256: 329a1ce393d3968e2fe837cfbcd3dbccd0b94acd2700d5e6a2c69a79f9413766
Contents?: true
Size: 952 Bytes
Versions: 7
Compression:
Stored size: 952 Bytes
Contents
Feature: custom formatters In order to format output/reporting to my particular needs As an RSpec user I want to create my own custom output formatters Scenario: specdoc format Given a file named "custom_formatter.rb" with: """ require "rspec/expectations" require "spec/runner/formatter/base_formatter" class CustomFormatter < Spec::Runner::Formatter::BaseFormatter def initialize(options, output) @output = output end def example_started(proxy) @output << "example: " << proxy.description end end """ And a file named "simple_example_spec.rb" with: """ describe "my group" do specify "my example" do end end """ When I run "rspec simple_example_spec.rb --require custom_formatter.rb --format CustomFormatter" Then the exit code should be 0 And the stdout should match "example: my example"
Version data entries
7 entries across 7 versions & 1 rubygems