Skip to content

Commit

Permalink
Removed unnecessary method
Browse files Browse the repository at this point in the history
  • Loading branch information
stevendaniels committed Dec 31, 2016
1 parent 4336db4 commit a3915b1
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions test/test_roo.rb
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,6 @@ def test_find_by_conditions
end
end


#TODO: temporaerer Test
def test_seiten_als_date
if LONG_RUN
Expand Down Expand Up @@ -959,7 +958,6 @@ def test_cell_methods
end
end


# compare large spreadsheets
def test_compare_large_spreadsheets
# problematisch, weil Formeln in Excel nicht unterstützt werden
Expand Down Expand Up @@ -1158,24 +1156,6 @@ def common_possible_bug_snowboard_cells(ss)
assert_equal "168W", ss.cell(13,'o'), ss.class
end

def split_coord(s)
letter = ""
number = 0
i = 0
while i<s.length and "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz".include?(s[i,1])
letter += s[i,1]
i+=1
end
while i<s.length and "01234567890".include?(s[i,1])
number = number*10 + s[i,1].to_i
i+=1
end
if letter=="" or number==0
raise ArgumentError
end
return letter,number
end

def test_bug_numbered_sheet_names
with_each_spreadsheet(:name=>'bug-numbered-sheet-names', :format=>:excelx) do |oo|
oo.each_with_pagename { }
Expand Down

0 comments on commit a3915b1

Please sign in to comment.