Upgraded Rails and RSpec
[monkeycharger.git] / vendor / plugins / rspec / failing_examples / failure_in_teardown.rb
blob6458ea2b893b697fbd40709e99c8916eca3529bd
1 describe "This example" do
2   
3   it "should be listed as failing in teardown" do
4   end
5   
6   after(:each) do
7     NonExistentClass.new
8   end
9   
10 end