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
81dc3832
Unverified
Commit
81dc3832
authored
Dec 09, 2017
by
bamchoh
Committed by
GitHub
Dec 09, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use same format between Fail and Skip
We can see gem name in skip message by this fix
parent
550c8782
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
test/assert.rb
test/assert.rb
+3
-2
No files found.
test/assert.rb
View file @
81dc3832
...
...
@@ -20,7 +20,8 @@ end
def
assertion_string
(
err
,
str
,
iso
=
nil
,
e
=
nil
,
bt
=
nil
)
msg
=
"
#{
err
}#{
str
}
"
msg
+=
" [
#{
iso
}
]"
if
iso
&&
iso
!=
''
msg
+=
" =>
#{
e
.
message
}
"
if
e
msg
+=
" =>
#{
e
.
cause
}
"
if
e
&&
e
.
respond_to?
(
:cause
)
msg
+=
" =>
#{
e
.
message
}
"
if
e
&&
!
e
.
respond_to?
(
:cause
)
msg
+=
" (mrbgems:
#{
GEMNAME
}
)"
if
Object
.
const_defined?
(
:GEMNAME
)
if
$mrbtest_assert
&&
$mrbtest_assert
.
size
>
0
$mrbtest_assert
.
each
do
|
idx
,
assert_msg
,
diff
|
...
...
@@ -56,7 +57,7 @@ def assert(str = 'Assertion failed', iso = '')
rescue
Exception
=>
e
bt
=
e
.
backtrace
if
$mrbtest_verbose
if
e
.
class
.
to_s
==
'MRubyTestSkip'
$asserts
.
push
"Skip:
#{
str
}
#{
iso
}
#{
e
.
cause
}
"
$asserts
.
push
(
assertion_string
(
'Skip: '
,
str
,
iso
,
e
,
nil
))
t_print
(
'?'
)
else
$asserts
.
push
(
assertion_string
(
"
#{
e
.
class
}
: "
,
str
,
iso
,
e
,
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