-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbinary_search_tree_test.rb
More file actions
executable file
·116 lines (100 loc) · 2.59 KB
/
binary_search_tree_test.rb
File metadata and controls
executable file
·116 lines (100 loc) · 2.59 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#!/usr/bin/env ruby
gem 'minitest', '>= 5.0.0'
require 'minitest/autorun'
require_relative 'binary_search_tree'
class BstTest < Minitest::Test
def test_data_is_retained
assert_equal 4, Bst.new(4).data
end
def test_inserting_less
skip
four = Bst.new 4
four.insert 2
assert_equal 4, four.data
assert_equal 2, four.left.data
end
def test_inserting_same
skip
four = Bst.new 4
four.insert 4
assert_equal 4, four.data
assert_equal 4, four.left.data
end
def test_inserting_right
skip
four = Bst.new 4
four.insert 5
assert_equal 4, four.data
assert_equal 5, four.right.data
end
def test_complex_tree # rubocop:disable Metrics/MethodLength
skip
four = Bst.new 4
four.insert 2
four.insert 6
four.insert 1
four.insert 3
four.insert 7
four.insert 5
assert_equal 4, four.data
assert_equal 2, four.left.data
assert_equal 1, four.left.left.data
assert_equal 3, four.left.right.data
assert_equal 6, four.right.data
assert_equal 5, four.right.left.data
assert_equal 7, four.right.right.data
end
def record_all_data(bst)
all_data = []
bst.each { |data| all_data << data }
all_data
end
def test_iterating_one_element
skip
assert_equal [4], record_all_data(Bst.new(4))
end
def test_iterating_over_smaller_element
skip
four = Bst.new 4
four.insert 2
assert_equal [2, 4], record_all_data(four)
end
def test_iterating_over_larger_element
skip
four = Bst.new 4
four.insert 5
assert_equal [4, 5], record_all_data(four)
end
def test_iterating_over_complex_tree
skip
four = Bst.new 4
four.insert 2
four.insert 1
four.insert 3
four.insert 6
four.insert 7
four.insert 5
assert_equal [1, 2, 3, 4, 5, 6, 7], record_all_data(four)
end
def test_each_returns_enumerator_if_no_block
skip
tree = Bst.new 4
[2, 1, 3, 6, 7, 5].each { |x| tree.insert x }
each_enumerator = tree.each
assert_kind_of Enumerator, each_enumerator
(1..7).each { |x| assert_equal(x, each_enumerator.next) }
assert_raises(StopIteration) { each_enumerator.next }
end
# Problems in exercism evolve over time,
# as we find better ways to ask questions.
# The version number refers to the version of the problem you solved,
# not your solution.
#
# Define a constant named VERSION inside of Bst.
# If you are curious, read more about constants on RubyDoc:
# http://ruby-doc.org/docs/ruby-doc-bundle/UsersGuide/rg/constants.html
def test_bookkeeping
skip
assert_equal 1, Bst::VERSION
end
end