Sha256: a84279219c9dd11e7f8f7eaa5397232eb48a69680aada41f3b9341b94c7498e9
Contents?: true
Size: 1.75 KB
Versions: 7
Compression:
Stored size: 1.75 KB
Contents
require 'spec_helper' describe 'handling 7 slot stages' do let(:image) { ImageHelpers.horizontal_offset_cross_red } let(:sqed) do Sqed.new( image: image, pattern: :horizontal_offset_cross, boundary_color: :red, has_border: false ) end let(:m) do { 0 => 'curator_metadata', 1 => 'identifier', 2 => 'image_registration', 3 => 'annotated_specimen' } end context 'parses' do specify 'new() without errors' do expect(sqed).to be_truthy end specify 'get result without errors' do expect(sqed.result).to be_truthy end end context 'simple boundaries - without thumbnail' do let(:s) { Sqed.new(image: image, metadata_map: m, use_thumbnail: false, layout: :horizontal_offset_cross, boundary_finder: Sqed::BoundaryFinder::ColorLineFinder, boundary_color: :red, has_border: false ) } specify 'boundaries are reasonable' do s.result c = s.boundaries.coordinates c.each do |section, values| c[section].each_with_index do |v, i| msg = "section #{section}, index #{i} has a bad value '#{v}'" expect(v > -1).to be_truthy, msg end end end end context 'boundaries - with_thumbnail' do let(:s) { Sqed.new(image: ImageHelpers.horizontal_offset_cross_red, use_thumbnail: true, pattern: :horizontal_offset_cross, boundary_color: :red, has_border: false ) } specify 'boundaries are reasonable' do s.result c = s.boundaries.coordinates c.each do |section, values| c[section].each_with_index do |v, i| msg = "section #{section}, index #{i} has a bad value '#{v}'" expect(v > -1).to be_truthy, msg end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems