gathering/async/get.test.jsView |
---|
29 | 29 … | |
30 | 30 … | t.equal(doc.title, 'ziva\'s birthday', 'has title') |
31 | 31 … | t.deepEqual(doc.startDateTime, { epoch: now + 750, tz: 'Pacific/ Auckland' }, 'has edited time startDateTime') |
32 | 32 … | t.equal(doc.location, 'our place in mirimar') |
| 33 … | + t.deepEqual(doc.image, { link: '&AnotherImage//z3os/qA9+YJndRmbJQXl8LYfBquz4=.sha256' }, 'has single image') |
33 | 34 … | |
| 35 … | + t.deepEqual(doc.images, [ |
| 36 … | + { |
| 37 … | + link: '&l/Mr4CqSFYtCsrz3os/qA9+YJndRmbJQXl8LYfBquz4=.sha256', |
| 38 … | + name: 'orange-grove-helpers.jpg', |
| 39 … | + size: 1049416, |
| 40 … | + type: 'image/jpeg' |
| 41 … | + }, |
| 42 … | + { link: '&AnotherImage//z3os/qA9+YJndRmbJQXl8LYfBquz4=.sha256' } |
| 43 … | + ], 'has all images added') |
| 44 … | + |
34 | 45 … | done() |
35 | 46 … | }) |
36 | 47 … | }) |
37 | 48 … | }) |
45 | 56 … | title: 'ziva\'s birthday', |
46 | 57 … | startDateTime: { |
47 | 58 … | epoch, |
48 | 59 … | tz: 'Pacific/ Auckland' |
| 60 … | + }, |
| 61 … | + image: { |
| 62 … | + link: '&l/Mr4CqSFYtCsrz3os/qA9+YJndRmbJQXl8LYfBquz4=.sha256', |
| 63 … | + name: 'orange-grove-helpers.jpg', |
| 64 … | + size: 1049416, |
| 65 … | + type: 'image/jpeg' |
49 | 66 … | } |
50 | 67 … | } |
51 | 68 … | scuttle.gathering.async.publish(opts, (err, gathering) => { |
52 | 69 … | if (err) return cb(err) |
54 | 71 … | |
55 | 72 … | epoch = now + 750 |
56 | 73 … | const opts = { |
57 | 74 … | startDateTime: { epoch }, |
58 | | - location: 'our place in mirimar' |
| 75 … | + location: 'our place in mirimar', |
| 76 … | + image: { |
| 77 … | + 'link': '&AnotherImage//z3os/qA9+YJndRmbJQXl8LYfBquz4=.sha256' |
| 78 … | + } |
59 | 79 … | } |
60 | 80 … | scuttle.update.async.publish(gathering.key, opts, (err, update) => { |
61 | 81 … | if (err) return cb(err) |
62 | 82 … | |