aboutsummaryrefslogtreecommitdiffstats
path: root/spec/lib
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@ubuntu.com>2019-01-25 21:59:22 -0500
committerLibravatarUnit 193 <unit193@ubuntu.com>2019-01-25 21:59:22 -0500
commit7d3739667c935c1bfbffc093154a5a46cbfee3ba (patch)
tree3fdbad727134c3a7e8bf009e3fc7e2de699ffb9a /spec/lib
parentacca1e035f166db69f69c4472efbbab5b3f40f3e (diff)
parent16dd018ca735392c2fb28b986316a9b22a06ccf9 (diff)
Update upstream source from tag 'upstream/2.8.1'
Update to upstream version '2.8.1' with Debian dir 0b3d620c27dcd0db30ac7d6f307d708b9f652c99
Diffstat (limited to 'spec/lib')
-rw-r--r--spec/lib/roo/excelx/sheet_doc_spec.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/spec/lib/roo/excelx/sheet_doc_spec.rb b/spec/lib/roo/excelx/sheet_doc_spec.rb
new file mode 100644
index 0000000..3dc3e93
--- /dev/null
+++ b/spec/lib/roo/excelx/sheet_doc_spec.rb
@@ -0,0 +1,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