summaryrefslogtreecommitdiffhomepage
path: root/test/image_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/image_spec.rb')
-rw-r--r--test/image_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/image_spec.rb b/test/image_spec.rb
index 43950c9..3eb5d86 100644
--- a/test/image_spec.rb
+++ b/test/image_spec.rb
@@ -1,11 +1,11 @@
require 'ruby2d'
RSpec.describe Ruby2D::Image do
-
+
describe '#new' do
it "raises exception if image file doesn't exist" do
expect { Image.new(0, 0, 'bad_image.png') }.to raise_error(Ruby2D::Error)
end
end
-
+
end