Add failing test for #1809
This commit is contained in:
parent
e8c65d3d85
commit
28aa5d34b0
1 changed files with 11 additions and 0 deletions
|
|
@ -85,3 +85,14 @@ class TesterWithSetup(unittest.TestCase):
|
|||
def test_still_the_same(self):
|
||||
bucket = self.conn.get_bucket('mybucket')
|
||||
bucket.name.should.equal("mybucket")
|
||||
|
||||
|
||||
@mock_s3_deprecated
|
||||
class TesterWithStaticmethod(object):
|
||||
|
||||
@staticmethod
|
||||
def static(*args):
|
||||
assert not args or not isinstance(args[0], TesterWithStaticmethod)
|
||||
|
||||
def test_no_instance_sent_to_staticmethod(self):
|
||||
self.static()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue