spec/rtesseract_mixed_spec.rb in rtesseract-1.2.6 vs spec/rtesseract_mixed_spec.rb in rtesseract-1.3.0

- old
+ new

@@ -7,31 +7,31 @@ @image_tif = @path.join("images","mixed.tif").to_s @image2_tif = @path.join("images","mixed2.tif").to_s end it "should be instantiable" do - RTesseract::Mixed.new.class.should eql(RTesseract::Mixed) - RTesseract::Mixed.new(@image_tif).class.should eql(RTesseract::Mixed) + expect(RTesseract::Mixed.new.class).to eql(RTesseract::Mixed) + expect(RTesseract::Mixed.new(@image_tif).class).to eql(RTesseract::Mixed) end it "should translate parts of the image to text" do mix_block = RTesseract::Mixed.new(@image_tif,{:psm=>7}) do |image| image.area(28, 19, 25, 25) #position of 4 image.area(180, 22, 20, 28) # position of 3 image.area(218, 22, 24, 28) # position of z image.area(248, 24, 22, 22) # position of z end - mix_block.to_s_without_spaces.should eql("43FF") + expect(mix_block.to_s_without_spaces).to eql("43FF") mix_block.clear_areas - mix_block.areas.should == [] + expect(mix_block.areas).to eql([]) mix_block = RTesseract::Mixed.new(@image_tif,{:areas => [ {:x => 28, :y=>19, :width=>25, :height=>25 }, #position of 4 {:x => 180, :y=>22, :width=>20, :height=>28}, # position of 3 {:x => 218, :y=>22, :width=>24, :height=>28}, # position of z {:x => 248, :y=>24, :width=>22, :height=>22} # position of z ],:psm=>7}) - mix_block.to_s_without_spaces.should eql("43FF") + expect(mix_block.to_s_without_spaces).to eql("43FF") end it " get a error" do mix_block = RTesseract::Mixed.new(@path.join("images","test_not_exists.png").to_s,{:areas => [{:x => 28, :y=>19, :width=>25, :height=>25 } ],:psm=>7})