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
Commit
823afd91
authored
10 years ago
by
Paul Kilgo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
NamedKey.__unicode__: tests and implementation
parent
7a6f561c
Hide 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):
class
NamedKey
(
ApplicationKey
):
name
=
models
.
CharField
(
max_length
=
50
,
blank
=
True
)
class
Meta
:
abstract
=
True
def
__unicode__
(
self
):
return
unicode
(
self
.
name
)
def
clean
(
self
):
if
not
self
.
name
:
try
:
...
...
This diff is collapsed.
Click to expand it.
django_sshkey/tests.py
View file @
823afd91
...
...
@@ -289,6 +289,12 @@ class NamedKeyTestCase(BaseTestCase):
)
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
):
@classmethod
def
setUpClass
(
cls
):
...
...
This diff is collapsed.
Click to expand it.
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