Skip to content

Instantly share code, notes, and snippets.

@nuysoft
Created August 29, 2013 10:51
Show Gist options
  • Save nuysoft/6376669 to your computer and use it in GitHub Desktop.
Save nuysoft/6376669 to your computer and use it in GitHub Desktop.
Random.extend({
constellations: ['白羊座', '金牛座', '双子座', '巨蟹座', '狮子座', '处女座', '天秤座', '天蝎座', '射手座', '摩羯座', '水瓶座', '双鱼座'],
constellation: function(date){
return this.pick(this.constellations)
}
})
Random.constellation()
// => "水瓶座"
Mock.mock('@CONSTELLATION')
// => "天蝎座"
Mock.mock({ constellation: '@CONSTELLATION'})
// => { constellation: "射手座" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment