Sha256: d0af363f1415d1202be7b937d94a9f1c13c701a03b09f3303f7635ebdd9341a6

Contents?: true

Size: 778 Bytes

Versions: 1

Compression:

Stored size: 778 Bytes

Contents

Feature: SMCat


  Scenario: Default configuration
    Given I have a file 'smcat.md' with content:
      """
      ---
      ---

      {% smcat %}
      initial,
      "tape player off",
      "tape player on" {
        stopped => playing : play;
        playing => stopped : stop;
        playing => paused  : pause;
        paused  => playing : pause;
        paused  => stopped : stop;
      };

      initial           => "tape player off";
      "tape player off" => stopped           : power;
      "tape player on"  => "tape player off" : power;
      {% endsmcat %}
      """
    When I run jekyll build
    Then the file '_site/smcat.html' should exist
    And I should see 'diagrams smcat' in '_site/smcat.html'
    And I should see svg output in '_site/smcat.html'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jekyll-diagrams-0.9.2 features/smcat.feature