mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-21 09:40:13 +01:00
8 lines
180 B
Ruby
8 lines
180 B
Ruby
|
|
require File.dirname(__FILE__) + '/spec_helper'
|
||
|
|
|
||
|
|
describe "Something really slow" do
|
||
|
|
it "should be failed by RSpec when it takes longer than --timeout" do
|
||
|
|
sleep(2)
|
||
|
|
end
|
||
|
|
end
|