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
aa2e03cd
Commit
aa2e03cd
authored
May 18, 2014
by
Carson McDonald
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add test for remove_instance_variable
parent
a1d11762
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
test/t/kernel.rb
test/t/kernel.rb
+20
-0
No files found.
test/t/kernel.rb
View file @
aa2e03cd
...
...
@@ -437,6 +437,26 @@ assert('Kernel#raise', '15.3.1.3.40') do
end
end
assert
(
'Kernel#remove_instance_variable'
,
'15.3.1.3.41'
)
do
class
Test4RemoveInstanceVar
attr_reader
:var
def
initialize
@var
=
99
end
def
remove
remove_instance_variable
(
:@var
)
end
end
tri
=
Test4RemoveInstanceVar
.
new
assert_equal
99
,
tri
.
var
tri
.
remove
assert_equal
nil
,
tri
.
var
assert_raise
NameError
do
tri
.
remove
end
end
# Kernel#require is defined in mruby-require. '15.3.1.3.42'
assert
(
'Kernel#respond_to?'
,
'15.3.1.3.43'
)
do
...
...
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