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
|
require 'ruby2d'
RSpec.describe Ruby2D::Text do
describe '#text=' do
it 'maps Time to string' do
t = Text.new(0, 0, Time.now, 40, "test/media/bitstream_vera/vera.ttf")
t.text = Time.new(1, 1, 1, 1, 1, 1, 1)
expect(t.text).to eq "0001-01-01 01:01:01 +0000"
end
it 'maps Number to string' do
t = Text.new(0, 0, 0, 40, "test/media/bitstream_vera/vera.ttf")
t.text = 0
expect(t.text).to eq "0"
end
end
describe "#width" do
it "is known after creation" do
t = Text.new(0, 0, "Hello world!", 40, "test/media/bitstream_vera/vera.ttf")
expect(t.width).to eq(239)
end
it "is known after updating" do
t = Text.new(0, 0, "Good morning world!", 40, "test/media/bitstream_vera/vera.ttf")
t.text = "Hello world!"
expect(t.width).to eq(239)
end
end
describe "#height" do
it "is known after creation" do
t = Text.new(0, 0, "Hello world!", 40, "test/media/bitstream_vera/vera.ttf")
expect(t.height).to eq(48)
end
it "is known after updating" do
t = Text.new(0, 0, "Good morning world!", 40, "test/media/bitstream_vera/vera.ttf")
t.text = "Hello world!"
expect(t.height).to eq(48)
end
end
describe '#contains?' do
it "returns true if point is inside text" do
text = Text.new(0, 0, "Hello world!", 40, "test/media/bitstream_vera/vera.ttf")
expect(text.contains?(text.width / 2, text.height / 2)).to be true
end
it "returns true if point is not inside text" do
text = Text.new(0, 0, "Hello world!", 40, "test/media/bitstream_vera/vera.ttf")
expect(text.contains?( - text.width / 2, text.height / 2)).to be false
expect(text.contains?( text.width / 2, - text.height / 2)).to be false
expect(text.contains?(3 * text.width / 2, text.height / 2)).to be false
expect(text.contains?( text.width / 2, 3 * text.height / 2)).to be false
end
end
end
|