blob: 6e0ba0923f121c8338fb859e35eea8af56dd8c23 (
plain)
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
|
require 'ruby2d'
RSpec.describe Ruby2D::Text do
describe "#new" do
it "raises exception if font file doesn't exist" do
expect { Text.new(font: "bad_font.ttf") }.to raise_error(Ruby2D::Error)
end
end
describe "#text=" do
it 'maps Time to string' do
t = Text.new(font: "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(font: "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(font: "test/media/bitstream_vera/vera.ttf")
expect(t.width).to be_between(110, 120)
end
it "is known after updating" do
t = Text.new(font: "test/media/bitstream_vera/vera.ttf")
t.text = "Hello!"
expect(t.width).to eq(59)
end
end
describe "#height" do
it "is known after creation" do
t = Text.new(font: "test/media/bitstream_vera/vera.ttf")
expect(t.height).to eq(24)
end
it "is known after updating" do
t = Text.new(font: "test/media/bitstream_vera/vera.ttf")
t.text = "Good morning world!"
expect(t.height).to eq(24)
end
end
describe "#contains?" do
it "returns true if point is inside the text" do
t = Text.new(font: "test/media/bitstream_vera/vera.ttf")
t.text = "Hello world!"
expect(t.contains?(t.width / 2, t.height / 2)).to be true
end
it "returns false if point is outside the text" do
t = Text.new(font: "test/media/bitstream_vera/vera.ttf")
t.text = "Hello world!"
expect(t.contains?( - t.width / 2, t.height / 2)).to be false
expect(t.contains?( t.width / 2, - t.height / 2)).to be false
expect(t.contains?(3 * t.width / 2, t.height / 2)).to be false
expect(t.contains?( t.width / 2, 3 * t.height / 2)).to be false
end
end
end
|