Skip to content

Instantly share code, notes, and snippets.

@ernsheong
Created August 28, 2012 04:05
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ernsheong/3494874 to your computer and use it in GitHub Desktop.
Save ernsheong/3494874 to your computer and use it in GitHub Desktop.
Testing behavior of before vs. before :each vs before :all
require 'spec_helper'
$count = 0
$count_each = 0
$count_all = 0
shared_examples_for "before :each" do
it { should == 1 }
it { should == 2 }
end
describe "before" do
before do
$count += 1
end
subject { $count }
it_should_behave_like "before :each"
end
describe "before :each" do
before :each do
$count_each += 1
end
subject { $count_each }
it_should_behave_like "before :each"
end
describe "before :all" do
before :all do
$count_all += 1
end
subject { $count_all }
it { should == 1 }
it { should == 1 }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment