aruba icon indicating copy to clipboard operation
aruba copied to clipboard

Add documenation about how to announce information with `RSpec`

Open maxmeyer opened this issue 9 years ago • 3 comments
trafficstars

Summary

You can activate announcers via RSpec-metadata. This not documented right now.

Expected Behavior

Add documentation.

Current Behavior

No documentation about this.

Possible Solution

Add documentation

Steps to Reproduce (for bugs)

Look for documentation.

Context

Your Environment

  • Version used: latest
  • Operating System and version:
  • Link to your project:

Guidance

You can use the following template. Please add all announcers to the features/rspec/announce.feature.

Feature: Getting started with RSpec and aruba

  Background:
    Given I use the fixture "empty-app"

  Scenario: Configure Aruba via RSpec metadata

    Given a file named "spec/spec_helper.rb" with:
    """
    require 'aruba/rspec'
    """
    And a file named "spec/getting_started_spec.rb" with:
    """
    require 'spec_helper'
    RSpec.describe 'Configure Aruba with RSpec', :type => :aruba do
      context 'asdf', announce: true do
        it { expect(aruba).to be }
      end
    end
    """
    When I run `rspec`
    Then the specs should all pass

maxmeyer avatar May 07 '16 13:05 maxmeyer

This issue has been automatically marked as stale because it has not had recent activity. It will be closed in a week if no further activity occurs.

stale[bot] avatar Nov 09 '17 16:11 stale[bot]

This issue has been automatically closed because of inactivity. You can support the Cucumber core team on opencollective.

stale[bot] avatar Nov 19 '17 19:11 stale[bot]

Related to #391.

mvz avatar Jan 01 '20 13:01 mvz