Sha256: 798506f02a794b679ed7e23089778b9ed523d27ec804b1f5520706cf98b1a0e5

Contents?: true

Size: 684 Bytes

Versions: 5

Compression:

Stored size: 684 Bytes

Contents

Feature: Unicode
  As a source code writer I want to be able to
  work with Unicode files

  Scenario: Unicode on ASCII locale
    Given I have a "test.txt" file with content:
    """
    # @todo #44 привет, друзья
    """
    When I run bash with
    """
    LANG=C ruby -Ipdd/lib pdd/bin/pdd test.txt -v -f=/dev/null -e=pdd/**/*
    """
    Then Exit code is zero

  Scenario: Skip file with broken Unicode
    Given I have a "test.txt" file with content:
    """
    \xFF test
    # @todo #44 \xFF hey
    \xFF test again
    """
    When I run bin/pdd with "--exclude=test.txt --v -f=/dev/null"
    Then Stdout contains "excluding test.txt"
    Then Exit code is zero

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
pdd-0.15 features/unicode.feature
pdd-0.14.4 features/unicode.feature
pdd-0.14.3 features/unicode.feature
pdd-0.14.2 features/unicode.feature
pdd-0.14.1 features/unicode.feature