Sha256: 748a527a73b88464ed7f03a3808a18c1ab9cf90181390dc64d515a165cd436cf

Contents?: true

Size: 1.03 KB

Versions: 2

Compression:

Stored size: 1.03 KB

Contents

Note: this is a debug feature and its not worth specifying until it gets a bit
more stable.
Feature: author lists information

  As an author
  I want to list the various components of my article
  So that I can diagnose errors in output

  Scenario: list stuff
    Given an article with the contents:
      """
      # :TEXT:
      # Anonymous section 1
    
      anonymous code 1
      # :END:

      anonymous code 2

      # :TEXT: A
      # Section A

      # :SAMPLE: X
      code sample X

      # :PROCESS: frob, "aaa"
      # :PROCESS: munge, "bbb"
      """
    When I run the command "germ list --sections" on the article
    Then the output should be as follows:
      """
      SECTION1
      A
      """
    When I run the command "germ list --samples" on the article
    Then the output should be as follows:
      """
      SECTION1
      SECTION2
      X
      """
    When I run the command "germ list --processes" on the article
    Then the output should be as follows:
      """
      frob
      _transform
      munge
      """

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
devver-germinate-1.2.0 features/author-lists-info.pending_feature
germinate-1.2.0 features/author-lists-info.pending_feature