File: binding_spec.rb

package info (click to toggle)
jruby 9.3.9.0%2Bds-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 80,856 kB
  • sloc: ruby: 517,823; java: 260,094; xml: 31,930; ansic: 5,777; yacc: 4,973; sh: 1,163; makefile: 105; jsp: 48; tcl: 40; exp: 11
file content (50 lines) | stat: -rw-r--r-- 2,162 bytes parent folder | download | duplicates (4)
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