-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathrefresher_spec.rb
83 lines (65 loc) · 2.03 KB
/
refresher_spec.rb
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
require 'spec_helper'
include Tutoring
describe 'Refresher' do
context "guess the collection" do
it "Yes, it is a Object, but which class" do
expect([].is_a? Array).to be true
expect(Array.new.instance_of? Array).to be true
end
it "Yes, it is a Object, but which class" do
expect({}.is_a? Hash).to be true
expect(Hash.new.instance_of? Hash).to be true
end
end
context "guess the type" do
it "Yes, it is a Object, but which" do
expect(:class.is_a? Symbol).to be true
end
it "Yes, it is a Object, but which" do
expect("module".is_a? String).to be true
end
it "Yes, it is a Object, but which" do
expect(1.is_a? Integer).to be true
end
it "Yes, it is a Object, but which" do
expect(1.5.is_a? Float).to be true
end
end
context "the following are Array methods" do
it "adds a thing to the end of the method" do
expect([].push(1)).to eq [1]
end
it "removes an item from the end of an array" do
expect([1].pop).to eq 1
end
it "adds an item to the front of an array" do
expect([1].unshift("banana")).to eq ["banana", 1]
end
it "removes an item from the front of an array" do
expect([1, "banana"].shift).to eq 1
end
end
context "the following are Hash methods" do
it "adds a key and value to a Hash" do
a_hash = { "a" => 1}
expect(a_hash.empty?).to be false
end
it "returns a value from the hash for the given key" do
a_hash = {magic: :johnson, shirley: :temple, "babe" => "ruth"}
expect(a_hash.fetch(:magic)).to eq :johnson
expect(a_hash[:shirley]).to eq :temple
expect(a_hash["babe"]).to eq "ruth"
end
it "removes a key value pair from a hash" do
a_hash = { frank: :sinatra }
a_hash.delete(:frank)
expect(a_hash.empty?).to be true
end
end
context "on loops, yeah!!!" do
it "should loop over the array and return a new array" do
loopy = [1,2,3]
expect(loopy.map { |n| n + 1 }).to eq [2,3,4]
end
end
end