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
f1768b1b
Commit
f1768b1b
authored
Aug 04, 2012
by
Sylvester Keil
Browse files
added tests for cite_details
parent
3d6e9866
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
58 additions
and
1 deletion
+58
-1
features/cite_details.feature
features/cite_details.feature
+57
-0
lib/jekyll/scholar/tags/cite_details.rb
lib/jekyll/scholar/tags/cite_details.rb
+1
-1
No files found.
features/cite_details.feature
0 → 100644
View file @
f1768b1b
Feature
:
Citations
As a scholar who likes to blog
I want to reference cool papers and books from my bibliography
@tags @cite_details
Scenario
:
A
Simple Cite Details Link
Given I have a scholar configuration with
:
|
key
|
value
|
|
source
|
./_bibliography
|
|
bibliography
|
my_references
|
And
I have a
"_bibliography"
directory
And I have a file "_bibliography/my_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 page "scholar.html"
:
"""
---
---
{% cite_details ruby %}
"""
When
I run jekyll
Then
the _site directory should exist
And
the
"_site/scholar.html"
file should exist
And
I should see
"Details</a>"
in
"_site/scholar.html"
@tags
@cite_details
Scenario
:
A
Simple Cite Details Link With A Text Argument
Given I have a scholar configuration with
:
|
key
|
value
|
|
source
|
./_bibliography
|
|
bibliography
|
my_references
|
And
I have a
"_bibliography"
directory
And I have a file "_bibliography/my_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 page "scholar.html"
:
"""
---
---
{% cite_details ruby, Click For More %}
"""
When
I run jekyll
Then
the _site directory should exist
And
the
"_site/scholar.html"
file should exist
And
I should see
"Click For More</a>"
in
"_site/scholar.html"
lib/jekyll/scholar/tags/cite_details.rb
View file @
f1768b1b
...
@@ -10,7 +10,7 @@ module Jekyll
...
@@ -10,7 +10,7 @@ module Jekyll
super
super
@config
=
Scholar
.
defaults
.
dup
@config
=
Scholar
.
defaults
.
dup
@key
,
@text
=
arguments
.
strip
.
split
(
/\s+/
,
2
)
@key
,
@text
=
arguments
.
strip
.
split
(
/
,
\s+/
,
2
)
end
end
def
render
(
context
)
def
render
(
context
)
...
...
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