forked from pallet/mongodb-crate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpallet.clj
More file actions
20 lines (19 loc) · 892 Bytes
/
pallet.clj
File metadata and controls
20 lines (19 loc) · 892 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(require
'[pallet.crate.mongodb-test
:refer [live-test-spec replica-test-spec arbiter-test-spec]]
'[pallet.crates.test-nodes :refer [node-specs]])
(defproject mongodb-crate
:provider node-specs ; supported pallet nodes
:groups [(group-spec "mongodb-live-test"
:extends [with-automated-admin-user
live-test-spec]
:roles #{:simple-test})
(group-spec "mongo-replica-live-test"
:extends [with-automated-admin-user
replica-test-spec]
:roles #{:replica-test}
:count 2)
(group-spec "mongo-arbiter-live-test"
:extends [with-automated-admin-user
arbiter-test-spec]
:roles #{:replica-test})])