Created
August 29, 2013 10:51
-
-
Save nuysoft/6376669 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
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