-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathArray_spec.rb
More file actions
93 lines (70 loc) · 2.31 KB
/
Copy pathArray_spec.rb
File metadata and controls
93 lines (70 loc) · 2.31 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
require_relative '../../spec_helper'
require_relative 'fixtures/classes'
describe "Kernel#Array" do
before :each do
@array = [1, 2, 3]
end
it "is a private method" do
Kernel.private_instance_methods(false).should.include?(:Array)
end
it "does not call #to_ary on an Array" do
@array.should_not_receive(:to_ary)
Array(@array).should == @array
end
it "calls #to_ary to convert the argument to an Array" do
obj = mock("Array([1,2,3])")
obj.should_receive(:to_ary).and_return(@array)
obj.should_not_receive(:to_a)
Array(obj).should == @array
end
it "does not call #to_a on an Array" do
@array.should_not_receive(:to_a)
Array(@array).should == @array
end
it "calls #to_a if the argument does not respond to #to_ary" do
obj = mock("Array([1,2,3])")
obj.should_receive(:to_a).and_return(@array)
Array(obj).should == @array
end
it "calls #to_a if #to_ary returns nil" do
obj = mock("Array([1,2,3])")
obj.should_receive(:to_ary).and_return(nil)
obj.should_receive(:to_a).and_return(@array)
Array(obj).should == @array
end
it "returns an Array containing the argument if #to_a returns nil" do
obj = mock("Array([1,2,3])")
obj.should_receive(:to_a).and_return(nil)
Array(obj).should == [obj]
end
it "calls #to_ary first, even if it's private" do
obj = KernelSpecs::PrivateToAry.new
Array(obj).should == [1, 2]
end
it "calls #to_a if #to_ary is not defined, even if it's private" do
obj = KernelSpecs::PrivateToA.new
Array(obj).should == [3, 4]
end
it "returns an Array containing the argument if it responds to neither #to_ary nor #to_a" do
obj = mock("Array(x)")
Array(obj).should == [obj]
end
it "returns an empty Array when passed nil" do
Array(nil).should == []
end
it "raises a TypeError if #to_ary does not return an Array" do
obj = mock("Array() string")
obj.should_receive(:to_ary).and_return("string")
-> { Array(obj) }.should.raise(TypeError)
end
it "raises a TypeError if #to_a does not return an Array" do
obj = mock("Array() string")
obj.should_receive(:to_a).and_return("string")
-> { Array(obj) }.should.raise(TypeError)
end
end
describe "Kernel.Array" do
it "is a public method" do
Kernel.public_methods(false).should.include?(:Array)
end
end