changelog shortlog tags changeset manifest revisions annotate raw

vendor/plugins/rspec/failing_examples/timeout_behaviour.rb

changeset 15: 64acf98d15f4
author: moriq@moriq.com
date: Mon Mar 10 10:12:58 2008 +0900 (16 years ago)
permissions: -rw-r--r--
description: add plugins rspec
1require File.dirname(__FILE__) + '/spec_helper'
2
3describe "Something really slow" do
4 it "should be failed by RSpec when it takes longer than --timeout" do
5 sleep(2)
6 end
7end