Skip to content

Instantly share code, notes, and snippets.

@danielkza
Last active December 19, 2015 04:29
Show Gist options
  • Save danielkza/5897490 to your computer and use it in GitHub Desktop.
Save danielkza/5897490 to your computer and use it in GitHub Desktop.
s := CMSystem globalInstance.
u := s userManager findUser: 'danielkza2@gmail.com' ifAbsent: [
| uu |
uu := CMUser withLogin: 'danielkza' email: 'danielkza2@gmail.com' password: '123aew' firstName: 'daniel' lastName: 'miranda'.
s userManager addUser: uu.
].
t := CMTopic withName: 'testTopic' creator: u.
s children add: t.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment