Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
OHR Support
Manage
Activity
Members
Labels
Plan
Issues
97
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Projects
OHR Support
Commits
61b9939b
Commit
61b9939b
authored
13 years ago
by
Holger Just
Browse files
Options
Downloads
Patches
Plain Diff
Add basic tests for the Null Formatter
parent
8ee8ef02
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/unit/lib/redmine/wiki_formatting/null_formatter_test.rb
+43
-0
43 additions, 0 deletions
test/unit/lib/redmine/wiki_formatting/null_formatter_test.rb
with
43 additions
and
0 deletions
test/unit/lib/redmine/wiki_formatting/null_formatter_test.rb
0 → 100644
+
43
−
0
View file @
61b9939b
#-- copyright
# ChiliProject is a project management system.
#
# Copyright (C) 2010-2011 the ChiliProject Team
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# See doc/COPYRIGHT.rdoc for more details.
#++
require
File
.
expand_path
(
'../../../../../test_helper'
,
__FILE__
)
class
Redmine::WikiFormatting::NullFormatterTest
<
HelperTestCase
def
setup
@formatter
=
Redmine
::
WikiFormatting
::
NullFormatter
::
Formatter
end
def
test_plain_text
assert_html_output
(
"This is some input"
=>
"This is some input"
)
end
def
test_escaping
assert_html_output
(
'this is a <script>'
=>
'this is a <script>'
)
end
private
def
assert_html_output
(
to_test
,
expect_paragraph
=
true
)
to_test
.
each
do
|
text
,
expected
|
assert_equal
((
expect_paragraph
?
"<p>
#{
expected
}
</p>"
:
expected
),
@formatter
.
new
(
text
).
to_html
,
"Formatting the following text failed:
\n
===
\n
#{
text
}
\n
===
\n
"
)
end
end
def
to_html
(
text
)
@formatter
.
new
(
text
).
to_html
end
end
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment