blob: 3dc3e93d3bab868098d769bf1ff824c747650357 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
# frozen_string_literal: true
require "spec_helper"
describe Roo::Excelx::SheetDoc do
subject(:blank_children) { Roo::Excelx.new("test/files/blank_children.xlsx") }
example "#last_row" do
expect(subject.last_row).to eq 3
end
end
|