Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Fukász Rómeó Ervin
/
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
A prog2-höz tartozó friss repo anyagok itt elérhetőek:
https://git.iit.bme.hu/
Commit
ae652769
authored
Apr 16, 2013
by
Dudás Ádám
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
school: unittests for Group
parent
91de5b6f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
1 deletions
+32
-1
school/tests.py
+32
-1
No files found.
school/tests.py
View file @
ae652769
from
django.test
import
TestCase
from
django.test
import
TestCase
from
models
import
create_user_profile
,
Person
,
Course
,
Semester
from
models
import
create_user_profile
,
Person
,
Course
,
Semester
,
Group
from
datetime
import
datetime
,
timedelta
from
datetime
import
datetime
,
timedelta
class
MockUser
:
class
MockUser
:
...
@@ -94,3 +94,34 @@ class SemesterTestCase(TestCase):
...
@@ -94,3 +94,34 @@ class SemesterTestCase(TestCase):
def
test_get_current
(
self
):
def
test_get_current
(
self
):
self
.
assertEqual
(
self
.
current_semester
,
Semester
.
get_current
())
self
.
assertEqual
(
self
.
current_semester
,
Semester
.
get_current
())
def
test_unicode
(
self
):
self
.
current_semester
.
__unicode__
()
class
GroupTestCase
(
TestCase
):
def
setUp
(
self
):
date
=
datetime
.
now
()
.
date
()
delta
=
timedelta
(
weeks
=
7
)
semester
=
Semester
.
objects
.
create
(
name
=
"testsem"
,
start
=
date
-
delta
,
end
=
date
+
delta
)
self
.
testgroup
=
Group
.
objects
.
create
(
name
=
"testgrp"
,
semester
=
semester
)
def
test_owner_list
(
self
):
self
.
assertIsNotNone
(
self
.
testgroup
.
owner_list
())
testowner1
=
Person
.
objects
.
create
(
code
=
"testprsn1"
)
self
.
testgroup
.
owners
.
add
(
testowner1
)
self
.
assertIsNotNone
(
self
.
testgroup
.
owner_list
())
testowner2
=
Person
.
objects
.
create
(
code
=
"testprsn2"
)
self
.
testgroup
.
owners
.
add
(
testowner2
)
self
.
assertIsNotNone
(
self
.
testgroup
.
owner_list
())
self
.
assertIn
(
", "
,
self
.
testgroup
.
owner_list
())
def
test_member_count
(
self
):
self
.
assertEqual
(
0
,
self
.
testgroup
.
member_count
())
testmember1
=
Person
.
objects
.
create
(
code
=
"testprsn3"
)
self
.
testgroup
.
members
.
add
(
testmember1
)
self
.
assertEqual
(
1
,
self
.
testgroup
.
member_count
())
testmember2
=
Person
.
objects
.
create
(
code
=
"testprsn4"
)
self
.
testgroup
.
members
.
add
(
testmember2
)
self
.
assertEqual
(
2
,
self
.
testgroup
.
member_count
())
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