Sha256: c618a463b1e485caf0800c8d35b5229ac518665c403df15473070d5594cae3e9

Contents?: true

Size: 508 Bytes

Versions: 5

Compression:

Stored size: 508 Bytes

Contents

Feature: Parse CSV from Different Sources
  
  Scenario: Successfully parse a valid CSV from a StringIO
      Given I have a CSV with the following content:
    """
"Foo","Bar","Baz"
"1","2","3"
"3","2","1"
    """
    And it is parsed as a StringIO
    When I ask if the CSV is valid
    Then I should get the value of true
  
  Scenario: Successfully parse a valid CSV from a File
    Given I parse a CSV file called "valid.csv"
    When I ask if the CSV is valid
    Then I should get the value of true
  

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
csvlint-0.1.4 features/sources.feature
csvlint-0.1.3 features/sources.feature
csvlint-0.1.1 features/sources.feature
csvlint-0.1.0 features/sources.feature
csvlint-0.0.1 features/sources.feature