test/test_makerhelper.rb in review-2.0.0.beta1 vs test/test_makerhelper.rb in review-2.0.0
- old
+ new
@@ -36,16 +36,18 @@
assert File.exist?("#{@tmpdir2}/subdir/foo.png"), "Copying a image file in a subdirectory"
assert image_files.include?("#{@tmpdir1}/subdir/foo.png")
end
def test_copy_images_to_dir_convert
- touch_file("#{@tmpdir1}/foo.eps")
+ if /mswin|mingw|cygwin/ !~ RUBY_PLATFORM
+ touch_file("#{@tmpdir1}/foo.eps")
- image_files = MakerHelper.copy_images_to_dir(@tmpdir1, @tmpdir2,
+ image_files = MakerHelper.copy_images_to_dir(@tmpdir1, @tmpdir2,
:convert => {:eps => :png})
- assert File.exist?("#{@tmpdir2}/foo.eps.png"), "EPS to PNG conversion failed"
- assert image_files.include?("#{@tmpdir1}/foo.eps.png")
+ assert File.exist?("#{@tmpdir2}/foo.eps.png"), "EPS to PNG conversion failed"
+ assert image_files.include?("#{@tmpdir1}/foo.eps.png")
+ end
end
def test_copy_images_to_dir_with_exts
types = %w{png gif jpg jpeg svg pdf eps}
types4epub = %w{png gif jpg jpeg svg}