Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
J
jekyll-scholar
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
caesr-pub
jekyll-scholar
Commits
6e583475
Commit
6e583475
authored
Jan 07, 2016
by
Joost van Pinxten
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix test case by using a different quote style to avoid matching problem with the Cucumber regex.
parent
d6711f1d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
features/cite_details.feature
features/cite_details.feature
+5
-5
No files found.
features/cite_details.feature
View file @
6e583475
...
...
@@ -41,7 +41,7 @@ Feature: Citations
And I have a file "_bibliography/references.bib"
:
"""
@book{a,
title = {{
"b" | prepend: "a"
}}
title = {{
'b' | prepend: 'a'
}}
}
"""
And
I have a
"_layouts"
directory
...
...
@@ -50,12 +50,12 @@ Feature: Citations
---
---
{{ page.entry.bibtex }}
"""
"""
When
I run jekyll
Then
the _site directory should exist
And
the
"_site/bibliography/a.html"
file should exist
And I should see "
""{{"b" prepend
:
"a"}}
""
" in "_site/bibliography/a.html"
And I should see "
{{'b' | prepend
:
'a'}}
"
in
"_site/bibliography/a.html"
And
I should not see
"ab"
in
"_site/bibliography/a.html"
@tags
@bibliography
@config
@template
@cite_details
...
...
@@ -69,7 +69,7 @@ Feature: Citations
And I have a file "_bibliography/references.bib"
:
"""
@book{a,
title = {{
"b" | prepend
:
"a"
}}
title = {{
'b' | prepend: 'a'
}}
}
"""
And
I have a
"_layouts"
directory
...
...
@@ -83,7 +83,7 @@ Feature: Citations
Then
the _site directory should exist
And
the
"_site/bibliography/a.html"
file should exist
And I should not see "
""
{{"b" prepend
:
"a"}}
""
" in "_site/bibliography/a.html"
And I should not see "
{{'b' | prepend
:
'a'}}
"
in
"_site/bibliography/a.html"
And
I should see
"ab"
in
"_site/bibliography/a.html"
@tags
@cite_details
...
...
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