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
Léo-Paul Géneau
gitlab-ce
Commits
2bfed70a
Commit
2bfed70a
authored
Dec 08, 2016
by
Munken
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More tests
parent
7f829f52
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
spec/lib/banzai/filter/inline_math_filter_spec.rb
spec/lib/banzai/filter/inline_math_filter_spec.rb
+11
-1
No files found.
spec/lib/banzai/filter/inline_math_filter_spec.rb
View file @
2bfed70a
...
@@ -23,9 +23,19 @@ describe Banzai::Filter::InlineMathFilter, lib: true do
...
@@ -23,9 +23,19 @@ describe Banzai::Filter::InlineMathFilter, lib: true do
expect
(
doc
.
to_s
).
to
eq
'test $<code class="code math">2+2</code>$ test'
expect
(
doc
.
to_s
).
to
eq
'test $<code class="code math">2+2</code>$ test'
end
end
it
'ignores cases with missing dolar sign'
do
it
'ignores cases with missing dolar sign
at the end
'
do
doc
=
filter
(
"test $<code>2+2</code> test"
)
doc
=
filter
(
"test $<code>2+2</code> test"
)
expect
(
doc
.
to_s
).
to
eq
'test $<code>2+2</code> test'
expect
(
doc
.
to_s
).
to
eq
'test $<code>2+2</code> test'
end
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'
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'
end
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