Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
caesr-pub
jekyll-scholar
Commits
1dba31b2
Commit
1dba31b2
authored
Apr 12, 2014
by
Sylvester Keil
Browse files
add test for #42
parent
50f6abef
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
0 deletions
+41
-0
features/multiple_files.feature
features/multiple_files.feature
+41
-0
No files found.
features/multiple_files.feature
0 → 100644
View file @
1dba31b2
Feature
:
BibTeX
As a scholar who likes to blog
I want to publish my BibTeX bibliography on my website
Based on multiple BibTeX files
Scenario
:
Multiple bibliography files
Given I have a scholar configuration with
:
|
key
|
value
|
|
source
|
./_bibliography
|
And
I have a
"_bibliography"
directory
And I have a file "_bibliography/references1.bib"
:
"""
@book{ruby,
title = {The Ruby Programming Language},
author = {Flanagan, David and Matsumoto, Yukihiro},
year = {2008},
publisher = {O'Reilly Media}
}
"""
And I have a file "_bibliography/references2.bib"
:
"""
@book{microscope,
title = {Ruby Under a Microscope},
author = {Pat Shaughnessy},
year = {2013},
publisher = {No Starch Press}
}
"""
And I have a page "scholar.html"
:
"""
---
---
{% bibliography -f references1 -f references2 %}
"""
When
I run jekyll
Then
the _site directory should exist
And
the
"_site/scholar.html"
file should exist
And
I should see
"<i>The Ruby Programming Language</i>"
in
"_site/scholar.html"
And
I should see
"<i>Ruby Under a Microscope</i>"
in
"_site/scholar.html"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment