Created
June 8, 2012 07:15
-
-
Save ono/2894151 to your computer and use it in GitHub Desktop.
alternative of http://stephenbartholomew.co.uk/blog/2012/06/07/glass-bottles-and-the-law-of-demeter/ ?
This file contains hidden or 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
| class User | |
| # e.g. stephen.issue_membership ono | |
| def issue_membership(to_user) | |
| # do stuff | |
| end | |
| end | |
| describe User do | |
| describe "issue_membership" do | |
| it "issues a membership to a given user" | |
| it "uses a subscription the user belongs to" | |
| it "doesn't issue a membership unless the user is admin" | |
| ... | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment