summaryrefslogtreecommitdiffhomepage
path: root/test/line_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/line_spec.rb')
-rw-r--r--test/line_spec.rb12
1 files changed, 2 insertions, 10 deletions
diff --git a/test/line_spec.rb b/test/line_spec.rb
index 04445d1..669d440 100644
--- a/test/line_spec.rb
+++ b/test/line_spec.rb
@@ -3,19 +3,11 @@ require 'ruby2d'
RSpec.describe Ruby2D::Triangle do
describe '#contains?' do
it "returns true if point is inside line" do
- line = Line.new(
- 0, 0,
- 100, 100
- )
+ line = Line.new(x1: 0, y1: 0, x2: 100, y2: 100)
expect(line.contains?(25, 25)).to be true
end
-
it "returns true if point is inside text" do
- line = Line.new(
- 0, 0,
- 100, 100
- )
-
+ line = Line.new(x1: 0, y1: 0, x2: 100, y2: 100)
expect(line.contains?(0, 10)).to be false
expect(line.contains?(10, 0)).to be false
end