-
Notifications
You must be signed in to change notification settings - Fork 19
/
README
34 lines (24 loc) · 841 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Django DAG
----------
Django-dag is a small reusable app which implements a Directed Acyclic Graph.
Usage
.....
Django-dag uses abstract base classes, to use it you must create your own
concrete classes that inherit from Django-dag classes.
The `dag_test` app contains a simple example and a unit test to show
you its usage.
Example::
class ConcreteNode(node_factory('ConcreteEdge')):
"""
Test node, adds just one field
"""
name = models.CharField(max_length = 32)
class ConcreteEdge(edge_factory(ConcreteNode, concrete = False)):
"""
Test edge, adds just one field
"""
name = models.CharField(max_length = 32, blank = True, null = True)
Tests
.....
Unit tests can be run with just django installed at the base directory by running
`python manage.py test`