Last active
August 30, 2017 15:05
-
-
Save aslakknutsen/51c97639648595a47da33aa731fa8756 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
db := requires.Resource(t, Database) | |
space, wis := requires.Objects(t, Space(1), WorkItems(3, ExtraLongTitle())) | |
func ExtraLongTitle() { | |
return func(wi *WorkItem) { | |
wi.Data.Attributes["system.title"] = ".. long thing.." | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment