Sha256: ea4fba7776dd2621d9fbb79973c0242ec6997420c45c5a2c4999e0486250c2dd

Contents?: true

Size: 619 Bytes

Versions: 9

Compression:

Stored size: 619 Bytes

Contents

Feature: EDTF parses ISO 8601 interval strings
	As a user of edtf-ruby
	I want to parse ISO 8601 interval strings
	
	Scenario Outline: parse intervals
		When I parse the string "<string>"
		Then the interval should cover the date "<date>"
	
	@004 @level0
	Scenarios: specification intervals
		| string                | date       |
		| 1964/2008             | 1964-01-01 |
		| 2004-06/2006-08       | 2006-08-31 |
		| 2004-01-01/2004-01-02 | 2004-01-01 |
		| 2004-02-01/2005-02-08 | 2005-02-08 |
		| 2004-02-01/2005-02    | 2004-12-01 |
		| 2004-02-01/2005       | 2005-12-31 |
		| 2005/2006-02          | 2005-01-01 |

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
edtf-2.3.1 features/parser/intervals.feature
edtf-2.3.0 features/parser/intervals.feature
edtf-2.2.0 features/parser/intervals.feature
edtf-2.1.0 features/parser/intervals.feature
edtf-2.0.0 features/parser/intervals.feature
edtf-1.0.0 features/parser/intervals.feature
edtf-0.0.9 features/parser/intervals.feature
edtf-0.0.8 features/parser/intervals.feature
edtf-0.0.7 features/parser/intervals.feature