-
Notifications
You must be signed in to change notification settings - Fork 9
/
testi_spec.rb
74 lines (59 loc) · 1.28 KB
/
testi_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
RSpec.describe 'moduuli Debugattava' do
it "on määritelty oikeassa tiedostossa" do
expect(File.exists? './debugattava.rb' ).to be true
require './debugattava.rb'
expect(Debugattava.class).to eq Module
end
it "määrittelee metodin tila" do
require './debugattava.rb'
class Testiluokka
attr_writer :x, :y
include Debugattava
end
t = Testiluokka.new
t.x = 1
t.y = 2
expect {
t.tila
}.to output(/x 1/).to_stdout
expect {
t.tila
}.to output(/y 2/).to_stdout
t.x = 4
t.y = 3
expect {
t.tila
}.to output(/x 4/).to_stdout
expect {
t.tila
}.to output(/y 3/).to_stdout
end
it "metodi tila toimii myös toisella testiluokalla" do
require './debugattava.rb'
class Testiluokka
attr_writer :x, :y, :z, :foo
include Debugattava
end
t = Testiluokka.new
t.x = "koe"
t.y = 123
t.z = 3
t.foo = "qwerty"
expect {
t.tila
}.to output(/x koe/).to_stdout
expect {
t.tila
}.to output(/y 123/).to_stdout
expect {
t.tila
}.to output(/z 3/).to_stdout
expect {
t.tila
}.to output(/foo qwerty/).to_stdout
t.z = "xyz"
expect {
t.tila
}.to output(/z xyz/).to_stdout
end
end