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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
d6a145d4
Commit
d6a145d4
authored
Aug 25, 2015
by
Robert Speicher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix two more failing specs
parent
c401543d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
spec/helpers/events_helper_spec.rb
spec/helpers/events_helper_spec.rb
+2
-3
No files found.
spec/helpers/events_helper_spec.rb
View file @
d6a145d4
...
...
@@ -28,8 +28,7 @@ describe EventsHelper do
it
'should display the first line of a code block'
do
input
=
"```
\n
Code block
\n
with two lines
\n
```"
expected
=
'<pre class="code highlight white plaintext"><code>'
\
'Code block...</code></pre>'
expected
=
%r{<pre.+><code>Code block
\.\.\.
</code></pre>}
expect
(
event_note
(
input
)).
to
match
(
expected
)
end
...
...
@@ -55,7 +54,7 @@ describe EventsHelper do
it
'should preserve code color scheme'
do
input
=
"```ruby
\n
def test
\n
'hello world'
\n
end
\n
```"
expected
=
'<pre class="code highlight
white
ruby">'
\
expected
=
'<pre class="code highlight
js-syntax-highlight
ruby">'
\
"<code><span class=
\"
k
\"
>def</span> <span class=
\"
nf
\"
>test</span>
\n
"
\
" <span class=
\"
s1
\"
>
\'
hello world
\'
</span>
\n
"
\
"<span class=
\"
k
\"
>end</span>"
\
...
...
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