Created
December 13, 2012 08:10
-
-
Save kmdsbng/4274927 to your computer and use it in GitHub Desktop.
spec template
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
| # -*- coding: utf-8 -*- | |
| require 'spec_helper' | |
| describe Hoge do | |
| shared_examples_for "shared" do | |
| it "validate_amount!" do | |
| hoge.should be_moge | |
| end | |
| end | |
| before do | |
| @service = Hoge.instance | |
| create_property | |
| end | |
| context "some state" do | |
| it { | |
| hoge.should be_moge | |
| } | |
| it_should_behave_like "shared" | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment