Sha256: f10e80d20dd0ea5c1fdf79355b62c771d17c09c4cb776b6cdcfd715b8515d9f4

Contents?: true

Size: 789 Bytes

Versions: 1

Compression:

Stored size: 789 Bytes

Contents

Feature: PlantUML


  Background: I have a file with PlantUML
    Given I have a file 'plantuml.md' with content:
      """
      ---
      ---

      {% plantuml %}
      Bob->Alice : hello
      {% endplantuml %}
      """

  Scenario: Basic Rendering
    Given I have a file 'plantuml.md' with content:
      """
      ---
      ---

      {% plantuml %}
      Bob->Alice : hello
      {% endplantuml %}
      """
    When I run jekyll build
    Then the file '_site/plantuml.html' should exist
    And I should see svg output in '_site/plantuml.html'

  Scenario: Remove XML Heading
    When I run jekyll build
    Then the file '_site/plantuml.html' should exist
    And I should not see '<\?xml' in '_site/plantuml.html'
    And I should not see '<!DOCTYPE' in '_site/plantuml.html'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jekyll-diagrams-0.9.3 features/plantuml.feature