Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
e3f5c4c5
Commit
e3f5c4c5
authored
Dec 08, 2016
by
Munken
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More tests
parent
2bfed70a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
8 deletions
+12
-8
spec/lib/banzai/filter/inline_math_filter_spec.rb
spec/lib/banzai/filter/inline_math_filter_spec.rb
+12
-8
No files found.
spec/lib/banzai/filter/inline_math_filter_spec.rb
View file @
e3f5c4c5
...
...
@@ -4,8 +4,9 @@ describe Banzai::Filter::InlineMathFilter, lib: true do
include
FilterSpecHelper
it
'leaves regular inline code unchanged'
do
doc
=
filter
(
"<code>2+2</code>"
)
expect
(
doc
.
to_s
).
to
eq
"<code>2+2</code>"
input
=
"<code>2+2</code>"
doc
=
filter
(
input
)
expect
(
doc
.
to_s
).
to
eq
input
end
it
'removes surrounding dollar signs and adds class'
do
...
...
@@ -24,18 +25,21 @@ describe Banzai::Filter::InlineMathFilter, lib: true do
end
it
'ignores cases with missing dolar sign at the end'
do
doc
=
filter
(
"test $<code>2+2</code> test"
)
expect
(
doc
.
to_s
).
to
eq
'test $<code>2+2</code> test'
input
=
"test $<code>2+2</code> test"
doc
=
filter
(
input
)
expect
(
doc
.
to_s
).
to
eq
input
end
it
'ignores cases with missing dolar sign at the beginning'
do
doc
=
filter
(
"test <code>2+2</code>$ test"
)
expect
(
doc
.
to_s
).
to
eq
'test <code>2+2</code>$ test'
input
=
"test <code>2+2</code>$ test"
doc
=
filter
(
input
)
expect
(
doc
.
to_s
).
to
eq
input
end
it
'ignores dollar signs if it is not adjacent'
do
doc
=
filter
(
"$test <code>2+2</code>$ test"
)
expect
(
doc
.
to_s
).
to
eq
'$test <code>2+2</code>$ test'
input
=
'<p>We check strictly $<code>2+2</code> and <code>2+2</code>$ </p>'
doc
=
filter
(
input
)
expect
(
doc
.
to_s
).
to
eq
input
end
end
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