roo 1.9.3 → 1.9.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
@@ -1,19 +0,0 @@
1
- require 'test/unit'
2
- require 'spreadsheet'
3
-
4
- class TestSpreadsheet < Test::Unit::TestCase
5
-
6
- def test_bug_last_row_255
7
- after Date.new(2010,2,15) do
8
- Spreadsheet.client_encoding = 'UTF-8'
9
- book = Spreadsheet.open(File.join('test','ScienceStaff.xls'))
10
- sheet1 = book.worksheet 0
11
- count = 0
12
- sheet1.each do |row|
13
- count += 1 # do something interesting with a row
14
- end
15
- puts "#{count} rows found"
16
- assert_equal 1537, count
17
- end
18
- end
19
- end