Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
RECIRCLE
/
interface-openstack
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
2
Merge Requests
4
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
A prog2-höz tartozó friss repo anyagok itt elérhetőek:
https://git.iit.bme.hu/
Commit
96181994
authored
Apr 26, 2019
by
Adam Torok
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Basic image test
parent
aa76a30d
Pipeline
#701
failed with stage
in 35 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
test/interface/unit/test_image.py
+17
-0
No files found.
test/interface/unit/test_image.py
0 → 100644
View file @
96181994
import
unittest
from
interface.image.Image
import
Image
class
TestImage
(
unittest
.
TestCase
):
def
test_fields
(
self
):
image
=
Image
(
'id'
,
'name'
,
'format'
)
self
.
assertEqual
(
image
.
id
,
'id'
)
self
.
assertEqual
(
image
.
name
,
'name'
)
self
.
assertEqual
(
image
.
format
,
'format'
)
if
__name__
==
'__main__'
:
unittest
.
main
()
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