23 lines
623 B
Python
23 lines
623 B
Python
import os
|
|
|
|
from django.db.models import FilePathField
|
|
from django.test import SimpleTestCase
|
|
|
|
|
|
class FilePathFieldTests(SimpleTestCase):
|
|
def test_path(self):
|
|
path = os.path.dirname(__file__)
|
|
field = FilePathField(path=path)
|
|
self.assertEqual(field.path, path)
|
|
self.assertEqual(field.formfield().path, path)
|
|
|
|
def test_callable_path(self):
|
|
path = os.path.dirname(__file__)
|
|
|
|
def generate_path():
|
|
return path
|
|
|
|
field = FilePathField(path=generate_path)
|
|
self.assertEqual(field.path(), path)
|
|
self.assertEqual(field.formfield().path, path)
|