Sha256: a74148fc645d04c2fd0fec37b441a14ba398b9353b5933dad307c2db028529d4

Contents?: true

Size: 754 Bytes

Versions: 1

Compression:

Stored size: 754 Bytes

Contents

@numerology
Feature: Formatting a number
  In order to format numbers
  the format_like method
  formats a number with a human readable example.

  @integer
  Scenario Outline: Format integers by example
    Given the integer "<value>"
    When I format using the example "<example>"
    Then I produce "<output>"

    Examples:
      | value              | example            | output             |
      | 123456             | 1,111              | 123,456            |
      | 123456             | 1.111              | 123.456            |
      | 123456             | 1 111              | 123 456            |
      | 1234567            | 1,111              | 1,234,567          |
      | 1234567            | 1.111              | 1.234.567          |

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
numerology-0.0.1 features/numerology.feature