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
8e21f5e1
Commit
8e21f5e1
authored
Jan 20, 2014
by
Sylvester Keil
Browse files
add repository test
parent
913ca29a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
0 deletions
+48
-0
features/repository.feature
features/repository.feature
+48
-0
No files found.
features/repository.feature
0 → 100644
View file @
8e21f5e1
Feature
:
PDF Repository
As a scholar who likes to blog
I want to publish my BibTeX bibliography on my blog
And I want Jekyll to generate links to PDFs of my references automatically
@repository
Scenario
:
A
bibliography with a single entry and a repository
Given I have a scholar configuration with
:
|
key
|
value
|
|
source
|
./_bibliography
|
|
repository
|
papers
|
|
bibliography_template
|
bibliography
|
And
I have a
"_bibliography"
directory
And I have a file "_bibliography/references.bib"
:
"""
@book{ruby,
title = {The Ruby Programming Language},
author = {Flanagan, David and Matsumoto, Yukihiro},
year = {2008},
publisher = {O'Reilly Media}
}
"""
And
I have a
"papers"
directory
And I have a file "papers/ruby.pdf"
:
"""
The PDF
"""
And
I have a
"_layouts"
directory
And I have a file "_layouts/bibliography.html"
:
"""
---
---
{{ reference }} Link: {{ link }}
"""
And I have a page "scholar.html"
:
"""
---
---
{% bibliography %}
"""
When
I run jekyll
Then
the _site directory should exist
And
the
"_site/papers/ruby.pdf"
file should exist
And
I should see
"The Ruby Programming Language"
in
"_site/scholar.html"
And I should see "Link
:
/papers/ruby.pdf"
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