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
5969ed1a
Commit
5969ed1a
authored
Apr 28, 2019
by
KOBAYASHI Shuji
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Commented out "Struct.new removes existing constant" test
Because this test is always skipped.
parent
b15293e7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
mrbgems/mruby-struct/test/struct.rb
mrbgems/mruby-struct/test/struct.rb
+8
-8
No files found.
mrbgems/mruby-struct/test/struct.rb
View file @
5969ed1a
...
...
@@ -152,14 +152,14 @@ assert("Struct#dig") do
assert_equal
1
,
a
.
dig
(
1
,
0
)
end
assert
(
"Struct.new removes existing constant"
)
do
skip
"redefining Struct with same name cause warnings"
begin
assert_not_equal
Struct
.
new
(
"Test"
,
:a
),
Struct
.
new
(
"Test"
,
:a
,
:b
)
ensure
Struct
.
remove_const
:Test
end
end
# TODO: suppress redefining Struct warning during test
# assert("Struct.new removes existing constant") do
#
begin
#
assert_not_equal Struct.new("Test", :a), Struct.new("Test", :a, :b)
#
ensure
#
Struct.remove_const :Test
#
end
#
end
assert
(
"Struct#initialize_copy requires struct to be the same type"
)
do
begin
...
...
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