File: notifiers.feature

package info (click to toggle)
ruby-guard 2.18.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,344 kB
  • sloc: ruby: 9,256; makefile: 6
file content (18 lines) | stat: -rw-r--r-- 604 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Feature: Notifiers

  In order to know what notifiers are available
  As a developer using Guard
  I want to see a table of notifiers and their options

  @in-process
  Scenario: Show notifiers and their configuration
    Given a file named "Guardfile" with:
    # NOTE: don't actually add notifiers, because Guard detects notifier client
    # mode - where Notifier.add() will fail
    """
    guard :cucumber do
    end
    """
    When I run `guard notifiers`
    Then the output should match /^\s+\| Name \s*\| Available \s*\|/
    Then the output should match /^\s+\| terminal_title \s* \| .\s* \|/