File tree 4 files changed +13
-13
lines changed 4 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 1
- 0.0.5
1
+ 0.0.6rc1
Original file line number Diff line number Diff line change 9
9
README_txt = readme .read ()
10
10
11
11
dependencies = [
12
- 'pyexcel>=0.1.7 '
12
+ 'pyexcel>=0.2.0 '
13
13
]
14
14
15
15
with open ("VERSION" , "r" ) as version :
Original file line number Diff line number Diff line change 3
3
nose-cov
4
4
codecov
5
5
coverage
6
- pyexcel-xls >= 0.0.7
7
- pyexcel >= 0.1.7
6
+ pyexcel-xls >= 0.1.0
7
+ pyexcel >= 0.2.0
8
8
SQLAlchemy
Original file line number Diff line number Diff line change @@ -56,35 +56,35 @@ def test_excel_input_get_file_tuple(self):
56
56
testinput = webio .ExcelInputInMultiDict ()
57
57
testinput .get_file_tuple (field_name = "test" ) # booom
58
58
59
+ @raises (NotImplementedError )
59
60
def test_get_sheet (self ):
60
61
myinput = TestInput ()
61
62
sheet = myinput .get_sheet (unrelated = "foo bar" )
62
- assert sheet == None
63
63
64
+ @raises (NotImplementedError )
64
65
def test_get_array (self ):
65
66
myinput = TestInput ()
66
67
array = myinput .get_array (unrelated = "foo bar" )
67
- assert array == None
68
68
69
+ @raises (NotImplementedError )
69
70
def test_get_dict (self ):
70
71
myinput = TestInput ()
71
72
result = myinput .get_dict (unrelated = "foo bar" )
72
- assert result == None
73
73
74
+ @raises (NotImplementedError )
74
75
def test_get_records (self ):
75
76
myinput = TestInput ()
76
- result = myinput .get_records (unrelated = "foo bar" )
77
- assert result == None
77
+ myinput .get_records (unrelated = "foo bar" )
78
78
79
+ @raises (NotImplementedError )
79
80
def test_get_book (self ):
80
81
myinput = TestInput ()
81
- result = myinput .get_book (unrelated = "foo bar" )
82
- assert result == None
82
+ myinput .get_book (unrelated = "foo bar" )
83
83
84
+ @raises (NotImplementedError )
84
85
def test_get_book_dict (self ):
85
86
myinput = TestInput ()
86
- result = myinput .get_book_dict (unrelated = "foo bar" )
87
- assert result == None
87
+ myinput .get_book_dict (unrelated = "foo bar" )
88
88
89
89
def test_dummy_function (self ):
90
90
result = webio .dummy_func (None , None )
You can’t perform that action at this time.
0 commit comments