Sha256: bc7b3a4c5d3a0e78fb7129fa9dd76647d8ba0978257f83edec1b9a2c93d69538
Contents?: true
Size: 1.35 KB
Versions: 81
Compression:
Stored size: 1.35 KB
Contents
Feature: Keys containing '/' symbols As a hacker who works with bibliographies I want to export BibTeX entries to the CiteProc format Scenario: Numeric months When I parse the following file: """ @article{DBLP:journals/dq/RossinK99, author = {Donald F. Rossin and Barbara D. Klein}, title = {Data Errors in Neural Network and Linear Regression Models: An Experimental Comparison}, journal = {Data Quality Journal}, volume = {5}, month = {9}, year = {1999}, ee = {http://www.dataquality.com/999KR.htm}, bibsource = {DBLP, http://dblp.uni-trier.de} } """ Then my bibliography should contain these articles: | year | month | | 1999 | sep | Scenario: Full month names When I parse the following file: """ @article{DBLP:journals/dq/RossinK99, author = {Donald F. Rossin and Barbara D. Klein}, title = {Data Errors in Neural Network and Linear Regression Models: An Experimental Comparison}, journal = {Data Quality Journal}, volume = {5}, month = {September}, year = {1999}, ee = {http://www.dataquality.com/999KR.htm}, bibsource = {DBLP, http://dblp.uni-trier.de} } """ Then my bibliography should contain these articles: | year | month | | 1999 | sep |
Version data entries
81 entries across 81 versions & 3 rubygems
Version | Path |
---|---|
bibtex-ruby-1.3.11 | features/issues/parse_months.feature |