Sha256: 9a0d9a9997b5b1da5e1eb1796c44d46cde29cdfd5d3ea79898e4dedb8ef98180
Contents?: true
Size: 1.82 KB
Versions: 3
Compression:
Stored size: 1.82 KB
Contents
Feature: Schema Validation Scenario: Valid CSV Given I have a CSV with the following content: """ "Bob","1234","bob@example.org" "Alice","5","alice@example.com" """ And it is stored at the url "http://example.com/example1.csv" And I have a schema with the following content: """ { "fields": [ { "name": "Name", "constraints": { "required": true } }, { "name": "Id", "constraints": { "required": true, "minLength": 1 } }, { "name": "Email", "constraints": { "required": true } } ] } """ When I ask if there are errors Then there should be 0 error Scenario: Schema invalid CSV Given I have a CSV with the following content: """ "Bob","1234","bob@example.org" "Alice","5","alice@example.com" """ And it is stored at the url "http://example.com/example1.csv" And I have a schema with the following content: """ { "fields": [ { "name": "Name", "constraints": { "required": true } }, { "name": "Id", "constraints": { "required": true, "minLength": 3 } }, { "name": "Email", "constraints": { "required": true } } ] } """ When I ask if there are errors Then there should be 1 error Scenario: CSV with incorrect header Given I have a CSV with the following content: """ "name","id","contact" "Bob","1234","bob@example.org" "Alice","5","alice@example.com" """ And it is stored at the url "http://example.com/example1.csv" And I have a schema with the following content: """ { "fields": [ { "name": "name", "constraints": { "required": true } }, { "name": "id", "constraints": { "required": true, "minLength": 3 } }, { "name": "email", "constraints": { "required": true } } ] } """ When I ask if there are warnings Then there should be 1 warnings
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
csvlint-0.1.1 | features/schema_validation.feature |
csvlint-0.1.0 | features/schema_validation.feature |
csvlint-0.0.1 | features/schema_validation.feature |