diff options
author | Dan McGee <dan@archlinux.org> | 2010-07-02 18:59:39 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-07-02 18:59:39 -0500 |
commit | 1a945dd13731ef8703b4124fda19b80f756fd5fa (patch) | |
tree | f95c141552522775713b62063e18b80878f47679 | |
parent | e5bd7694320185cd1613f8c026d0f9e7bf2a2316 (diff) |
Add mirror protocols fixture
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r-- | main/fixtures/mirrorprotocols.json | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/main/fixtures/mirrorprotocols.json b/main/fixtures/mirrorprotocols.json new file mode 100644 index 00000000..9e8932a8 --- /dev/null +++ b/main/fixtures/mirrorprotocols.json @@ -0,0 +1,23 @@ +[ + { + "pk": 2, + "model": "main.mirrorprotocol", + "fields": { + "protocol": "ftp" + } + }, + { + "pk": 1, + "model": "main.mirrorprotocol", + "fields": { + "protocol": "http" + } + }, + { + "pk": 3, + "model": "main.mirrorprotocol", + "fields": { + "protocol": "rsync" + } + } +] |