roo 1.9.3 → 1.9.4

Sign up to get free protection for your applications and to get access to all the features.
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