1
0
mirror of https://github.com/peeringdb/peeringdb.git synced 2024-05-11 05:55:09 +00:00
Files
peeringdb-peeringdb/docs/dev/modules/mock.py.md
Matt Griswold e2619a001f Support 202201 (#1111)
* remove survey notifications

* substantially rate limit unauthenticated /api/ queries to encourage authenticated queries #853

* move api throttle class configuration to settings (#853)

* #722 with a more generic validation approach

* Add organisations and registered users to "Global System Statistics" in footer #620

* poetry relock

* linting

* regen docs

* fix test data

Co-authored-by: Stefan Pratter <stefan@20c.com>
Co-authored-by: David Poarch <dpoarch@20c.com>
2022-02-08 13:14:27 -06:00

793 B

Generated from mock.py on 2022-02-07 09:42:46.681191

peeringdb_server.mock

Handle generation of mock data for testing purposes.

Classes


Mock

Mock(builtins.object)

Class that allows creation of mock data in the database.

NOTE: This actually writes data to the database and should only be used to populate a dev instance.

Methods

_init_

def __init__(self)

Initialize self. See help(type(self)) for accurate signature.


create

def create(self, reftag, **kwargs)

Create a new instance of model specified in reftag

Any arguments passed as kwargs will override mock field values.

Note: Unless there are no relationships passed in kwargs, required parent objects will be automatically created as well.

Returns: The created instance.