FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
jruby/spec/java_integration/methods/binding_spec.rb at jruby-9.4 · jruby/jruby · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
jruby
/
jruby
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
947
Star
3.9k
Code
Issues
845
Pull requests
110
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
jruby
/
spec
/
java_integration
/
methods
/
binding_spec.rb
Copy path
More file actions
More file actions
Latest commit
History
History
History
50 lines (41 loc) · 2.11 KB
Breadcrumbs
jruby
/
spec
/
java_integration
/
methods
/
binding_spec.rb
Copy path
File metadata and controls
50 lines (41 loc) · 2.11 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
require
File
.
dirname
(
__FILE__
)
+
"/../spec_helper"
java_import
"java_integration.fixtures.SuperWithInterface"
describe
"A private subclass of a public superclass with interfaces"
do
it
"defines all methods from those interfaces"
do
sub_without
=
SuperWithInterface
.
sub_class_instance
# sub_without_cls = sub_without.class
#
# sub_without_cls.instance_methods.should include("size")
# sub_without_cls.instance_methods.should include("empty?")
# sub_without_cls.instance_methods.should include("contains?")
# sub_without_cls.instance_methods.should include("iterator")
# sub_without_cls.instance_methods.should include("to_array")
# sub_without_cls.instance_methods.should include("add")
# sub_without_cls.instance_methods.should include("remove")
# sub_without_cls.instance_methods.should include("contains_all?")
# sub_without_cls.instance_methods.should include("add_all")
# sub_without_cls.instance_methods.should include("remove_all")
# sub_without_cls.instance_methods.should include("retain_all")
# sub_without_cls.instance_methods.should include("clear")
# test that add can handle values other than string, since a
# once-upon-a-time change caused child classes to only bind
# unique methods, which in this case would be private boolean add(String)
expect
(
sub_without
.
add
(
1
)
)
.
to
eq
(
true
)
end
end
describe
"A private subclass with interfaces"
do
it
"defines all methods from those interfaces"
do
sub_without
=
SuperWithInterface
.
sub_class_instance
sub_without_cls
=
sub_without
.
class
expect
(
sub_without_cls
.
instance_methods
)
.
to
have_strings_or_symbols
"run"
end
end
describe
"A public subclass with interfaces extending a superclass that duplicates some of those methods"
do
it
"should still bind all methods from the child"
do
sub_with
=
SuperWithInterface
::
SubWithInterface
.
new
# test that add can handle values other than string, since a
# once-upon-a-time change caused child classes to only bind
# unique methods, which in this case would be private boolean add(String)
expect
(
sub_with
.
add
(
1
)
)
.
to
eq
(
true
)
end
end
Back
|
FazBrowse Home
|
New Git URL