Skip to content

Instantly share code, notes, and snippets.

@kmdsbng
Created December 13, 2012 08:10
Show Gist options
  • Select an option

  • Save kmdsbng/4274927 to your computer and use it in GitHub Desktop.

Select an option

Save kmdsbng/4274927 to your computer and use it in GitHub Desktop.
spec template
# -*- 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