Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
e1de8613
Commit
e1de8613
authored
Jul 12, 2017
by
Yukihiro "Matz" Matsumoto
Committed by
GitHub
Jul 12, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3740 from christopheraue/fix_test_output
fixed printing failed assertions
parents
fc666bfe
495a2e60
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
test/assert.rb
test/assert.rb
+2
-2
No files found.
test/assert.rb
View file @
e1de8613
...
...
@@ -23,8 +23,8 @@ def assertion_string(err, str, iso=nil, e=nil, bt=nil)
msg
+=
" =>
#{
e
.
message
}
"
if
e
msg
+=
" (mrbgems:
#{
GEMNAME
}
)"
if
Object
.
const_defined?
(
:GEMNAME
)
if
$mrbtest_assert
&&
$mrbtest_assert
.
size
>
0
$mrbtest_assert
.
each
do
|
idx
,
msg
,
diff
|
msg
+=
"
\n
- Assertion[
#{
idx
}
] Failed:
#{
msg
}
\n
#{
diff
}
"
$mrbtest_assert
.
each
do
|
idx
,
assert_
msg
,
diff
|
msg
+=
"
\n
- Assertion[
#{
idx
}
] Failed:
#{
assert_
msg
}
\n
#{
diff
}
"
end
end
msg
+=
"
\n
backtrace:
\n\t
#{
bt
.
join
(
"
\n\t
"
)
}
"
if
bt
...
...
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