Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Gelencsér Szabolcs
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
7d96e460
authored
Feb 09, 2014
by
Őry Máté
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vm: remove InstanceTestCase
parent
fd49ea7e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
37 deletions
+0
-37
circle/vm/tests/test_models.py
+0
-37
No files found.
circle/vm/tests/test_models.py
View file @
7d96e460
...
...
@@ -24,43 +24,6 @@ class TemplateTestCase(TestCase):
# TODO add images & net
class
InstanceTestCase
(
TestCase
):
def
test_pre_state_changed_w_exception
(
self
):
"""Signal handler of pre_state_changed prevents save with Exception."""
def
callback
(
sender
,
new_state
,
**
kwargs
):
if
new_state
==
'invalid value'
:
raise
Exception
()
pre_state_changed
.
connect
(
callback
)
i
=
Instance
(
state
=
'NOSTATE'
)
i
.
save
=
Mock
()
i
.
state_changed
(
'invalid value'
)
assert
i
.
state
==
'NOSTATE'
assert
not
i
.
save
.
called
# def test_pre_state_changed_wo_exception(self):
# """Signal handler of pre_state_changed allows save."""
# mock = Mock()
# pre_state_changed.connect(mock)
# i = Instance(state='NOSTATE')
# i.save = Mock()
# i.state_changed('RUNNING')
# assert i.state == 'RUNNING'
# assert mock.called
# assert i.save.called
# def test_post_state_changed(self):
# """Signal handler of post_state_changed runs."""
# mock = Mock()
# post_state_changed.connect(mock)
# i = Instance(state='NOSTATE')
# i.save = Mock()
# i.state_changed('RUNNING')
# assert mock.called
# assert i.save.called
# assert i.state == 'RUNNING'
class
InterfaceTestCase
(
TestCase
):
def
test_interface_create
(
self
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment