-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathgenerate_template.go
57 lines (32 loc) · 1010 Bytes
/
generate_template.go
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package main
import "io/ioutil"
const template = `As a user I can toast a bagel
When I insert a bagel into toaster and press the on button, I should get a toasted bagel
L: mvp, toasting
---
As a user I can set the desired color of my bagel
I should be able to manipulate a dial and choose one of:
- light
- medium
- dark
Pressing the on button gives me toast of the appropriate color.
L: mvp, toasting
---
As a user I can clean my bagel toaster
I should be able to pull out a tray and clean up the crumbs.
L: mvp, clean-up
---
[BUG] Every third time I use it, the toaster jams
L: mvp
---
[CHORE] Reticulate the Toaster's turboencabulator
A metabolic endocrinide that the developrs will likely need to photoencapsulate.
- [ ] Re-enfarbulate the mitilandrinide
- [ ] Masticulate the retracto-mandible
- [ ] Effervesce all enteropolycarbides
---
[RELEASE] Toaster MVP is Ready
L: mvp`
func GenerateTemplate() error {
return ioutil.WriteFile("stories.prolific", []byte(template), 0666)
}