Skip to content

Commit 5fe03ed

Browse files
authored
Update accepts.py
Removed the TestAcceptsClass test class.
1 parent 0df5be7 commit 5fe03ed

File tree

1 file changed

+0
-26
lines changed

1 file changed

+0
-26
lines changed

accepts.py

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -77,29 +77,3 @@ def wrapper(*arguments):
7777
raise TypeError('"' + str(arg) + '" is not a tuple!')
7878
return func(cls,arguments[0])
7979
return wrapper
80-
81-
class TestAcceptsClass(object):
82-
83-
@accepts.boolean
84-
def _boolean(self,_boolean_):
85-
print('boolean => '+str(_boolean_))
86-
87-
@accepts.integer
88-
def _integer(self,_integer_):
89-
print('integer => '+str(_integer_))
90-
91-
@accepts.string
92-
def _string(self,_string_):
93-
print('string => '+str(_string_))
94-
95-
@accepts.dictionary
96-
def _dictionary(self,_dictionary_):
97-
print('dictionary => '+str(_dictionary_))
98-
99-
@accepts.list
100-
def _list(self,_list_):
101-
print('list => '+str( _list_))
102-
103-
@accepts.tuple
104-
def _tuple(self,_tuple_):
105-
print('tuple => '+str(_tuple_))

0 commit comments

Comments
 (0)