Skip to content
This repository has been archived by the owner on Mar 28, 2024. It is now read-only.

Commit

Permalink
Fixing skiped tests
Browse files Browse the repository at this point in the history
  • Loading branch information
felipevolpone committed Aug 5, 2016
1 parent 16e84c6 commit f1da31f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ray-core/tests/model_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,9 @@ def put(self, *args, **kwargs):
def get(self, *args, **kwargs):
return self

@classmethod
def find(cls, *args, **kwargs):
return [cls()]

def delete(self, *args, **kwargs):
return self
1 change: 0 additions & 1 deletion ray-core/tests/test_authentication_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ def describe(cls):
return {'login': str}


@unittest.skip('its necessary mock the ModelInterface database')
class TestProctedEndpoint(unittest.TestCase):

def test_login(self):
Expand Down
1 change: 0 additions & 1 deletion ray-core/tests/test_shield.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ def get(self, info):
return info['username'] == 'felipe'


@unittest.skip('its necessary mock the ModelInterface database')
class TestShield(unittest.TestCase):

def test(self):
Expand Down

0 comments on commit f1da31f

Please sign in to comment.