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
66747603
Commit
66747603
authored
Dec 25, 2013
by
Carson McDonald
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add more testing for singletons
parent
c70e2f70
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
0 deletions
+34
-0
test/t/class.rb
test/t/class.rb
+34
-0
No files found.
test/t/class.rb
View file @
66747603
...
...
@@ -258,3 +258,37 @@ assert('Class#inherited') do
assert_equal
(
Baz
,
Foo
.
subclass_name
)
end
assert
(
'singleton tests'
)
do
bar
=
String
.
new
baz
=
class
<<
bar
def
self
.
run_baz
200
end
end
assert_false
baz
.
singleton_methods
.
include?
:run_baz
assert_raise
(
NoMethodError
,
'should raise NoMethodError'
)
do
baz
.
run_baz
end
assert_raise
(
NoMethodError
,
'should raise NoMethodError'
)
do
bar
.
run_baz
end
baz
=
class
<<
bar
def
self
.
run_baz
300
end
self
end
assert_true
baz
.
singleton_methods
.
include?
:run_baz
assert_equal
300
,
baz
.
run_baz
assert_raise
(
NoMethodError
,
'should raise NoMethodError'
)
do
bar
.
run_baz
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