Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
CIRCLE
/
django-sshkey
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/
You need to sign in or sign up before continuing.
Commit
823afd91
authored
Oct 09, 2014
by
Paul Kilgo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
NamedKey.__unicode__: tests and implementation
parent
7a6f561c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
django_sshkey/models.py
+4
-0
django_sshkey/tests.py
+6
-0
No files found.
django_sshkey/models.py
View file @
823afd91
...
@@ -137,9 +137,13 @@ class ApplicationKey(models.Model):
...
@@ -137,9 +137,13 @@ class ApplicationKey(models.Model):
class
NamedKey
(
ApplicationKey
):
class
NamedKey
(
ApplicationKey
):
name
=
models
.
CharField
(
max_length
=
50
,
blank
=
True
)
name
=
models
.
CharField
(
max_length
=
50
,
blank
=
True
)
class
Meta
:
class
Meta
:
abstract
=
True
abstract
=
True
def
__unicode__
(
self
):
return
unicode
(
self
.
name
)
def
clean
(
self
):
def
clean
(
self
):
if
not
self
.
name
:
if
not
self
.
name
:
try
:
try
:
...
...
django_sshkey/tests.py
View file @
823afd91
...
@@ -289,6 +289,12 @@ class NamedKeyTestCase(BaseTestCase):
...
@@ -289,6 +289,12 @@ class NamedKeyTestCase(BaseTestCase):
)
)
self
.
assertRaises
(
ValidationError
,
key
.
full_clean
)
self
.
assertRaises
(
ValidationError
,
key
.
full_clean
)
def
test_unicode
(
self
):
key
=
TestNamedKey
(
basekey
=
self
.
key1
)
key
.
full_clean
()
key
.
save
()
self
.
assertEqual
(
key
.
name
,
unicode
(
key
))
class
UserKeyTestCase
(
BaseTestCase
):
class
UserKeyTestCase
(
BaseTestCase
):
@classmethod
@classmethod
def
setUpClass
(
cls
):
def
setUpClass
(
cls
):
...
...
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