Sha256: 4d445e5dfc11f10558d4a05b1bcdde1e867256e3da5dcfb6c45a336415c3fc5f

Contents?: true

Size: 508 Bytes

Versions: 5

Compression:

Stored size: 508 Bytes

Contents

# coding: utf-8

@ruby19
Feature: Fix the column width for multibyte character
  Scenario: A simple array of hashes
    Given a variable named data with
      |title             | author   |
      |これは日本語です。| 山田太郎 |
      |English           | Bob      |
    When I table_print data
    Then the output should contain
    """
    TITLE              | AUTHOR  
    -------------------|---------
    これは日本語です。 | 山田太郎
    English            | Bob     
    """

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
table_print-1.4.0 features/multibyte.feature
table_print-1.3.3 features/multibyte.feature
table_print-1.3.2 features/multibyte.feature
table_print-1.3.1 features/multibyte.feature
table_print-1.3.0 features/multibyte.feature