features/validation_errors.feature in csvlint-0.1.0 vs features/validation_errors.feature in csvlint-0.1.1
- old
+ new
@@ -146,6 +146,14 @@
Scenario: inconsistent line endings in file cause an error
Given I have a CSV file called "inconsistent-line-endings.csv"
And it is stored at the url "http://example.com/example1.csv"
And I ask if there are errors
Then there should be 1 error
- And that error should have the type "line_breaks"
\ No newline at end of file
+ And that error should have the type "line_breaks"
+
+
+ Scenario: inconsistent line endings with unquoted fields in file cause an error
+ Given I have a CSV file called "inconsistent-line-endings-unquoted.csv"
+ And it is stored at the url "http://example.com/example1.csv"
+ And I ask if there are errors
+ Then there should be 1 error
+ And that error should have the type "line_breaks"