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
03b07419
Commit
03b07419
authored
May 07, 2020
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unnecessary `sprintf` test that fails since
91368c11
.
parent
a87f0b15
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
23 deletions
+0
-23
mrbgems/mruby-sprintf/test/sprintf.rb
mrbgems/mruby-sprintf/test/sprintf.rb
+0
-23
No files found.
mrbgems/mruby-sprintf/test/sprintf.rb
View file @
03b07419
...
@@ -73,29 +73,6 @@ assert('String#% with nan') do
...
@@ -73,29 +73,6 @@ assert('String#% with nan') do
assert_equal
" NaN"
,
"% 5f"
%
nan
assert_equal
" NaN"
,
"% 5f"
%
nan
end
end
assert
(
"String#% with invalid chr"
)
do
begin
class
Fixnum
alias_method
:chr_
,
:chr
if
method_defined?
(
:chr
)
def
chr
nil
end
end
assert_raise
TypeError
do
"%c"
%
0x80
end
ensure
class
Fixnum
if
method_defined?
(
:chr_
)
alias_method
:chr
,
:chr_
remove_method
:chr_
end
end
end
end
assert
(
"String#% %b"
)
do
assert
(
"String#% %b"
)
do
assert_equal
(
"..10115"
,
"%0b5"
%
-
5
)
assert_equal
(
"..10115"
,
"%0b5"
%
-
5
)
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