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
4c7dbaa3
Commit
4c7dbaa3
authored
Apr 13, 2014
by
David Moxey
Browse files
Add feature for string tests
parent
b515a535
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
114 additions
and
0 deletions
+114
-0
features/string.feature
features/string.feature
+114
-0
No files found.
features/string.feature
0 → 100644
View file @
4c7dbaa3
Feature
:
String replacement
As a scholar who likes to blog
I want to publish my BibTeX bibliography on my blog
And make sure that strings are correctly substituted
@tags @string
Scenario
:
String replacement
Given I have a scholar configuration with
:
|
key
|
value
|
|
source
|
./_bibliography
|
And
I have a
"_bibliography"
directory
And I have a file "_bibliography/references.bib"
:
"""
@string{ rubypl = "The Ruby Programming Language" }
@book{ruby,
title = rubypl,
author = {Flanagan, David and Matsumoto, Yukihiro},
year = {2008},
publisher = {O'Reilly Media}
}
"""
And I have a page "scholar.html"
:
"""
---
---
{% bibliography -f references %}
"""
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"
@tags
@string
Scenario
:
String replacement disabled
Given I have a scholar configuration with
:
|
key
|
value
|
|
source
|
./_bibliography
|
|
replace_strings
|
false
|
And
I have a
"_bibliography"
directory
And I have a file "_bibliography/references.bib"
:
"""
@string{ rubypl = "The Ruby Programming Language" }
@book{ruby,
title = rubypl,
author = {Flanagan, David and Matsumoto, Yukihiro},
year = {2008},
publisher = {O'Reilly Media}
}
"""
And I have a page "scholar.html"
:
"""
---
---
{% bibliography -f references %}
"""
When
I run jekyll
Then
the _site directory should exist
And
the
"_site/scholar.html"
file should exist
And
I should see
"<i>rubypl</i>"
in
"_site/scholar.html"
@tags
@string
Scenario
:
Join strings
Given I have a scholar configuration with
:
|
key
|
value
|
|
source
|
./_bibliography
|
And
I have a
"_bibliography"
directory
And I have a file "_bibliography/references.bib"
:
"""
@string{ ruby = "Ruby" }
@book{ruby,
title = "The " # ruby # " Programming Language",
author = {Flanagan, David and Matsumoto, Yukihiro},
year = {2008},
publisher = {O'Reilly Media}
}
"""
And I have a page "scholar.html"
:
"""
---
---
{% bibliography -f references %}
"""
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"
@tags
@string
Scenario
:
Join strings disabled
Given I have a scholar configuration with
:
|
key
|
value
|
|
source
|
./_bibliography
|
|
join_strings
|
false
|
And
I have a
"_bibliography"
directory
And I have a file "_bibliography/references.bib"
:
"""
@string{ ruby = "Ruby" }
@book{ruby,
title = "The " # ruby # " Programming Language",
author = {Flanagan, David and Matsumoto, Yukihiro},
year = {2008},
publisher = {O'Reilly Media}
}
"""
And I have a page "scholar.html"
:
"""
---
---
{% bibliography -f references %}
"""
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"
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