aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/library/timeout/error_spec.rb
blob: 37462ecd49e34158e59a5aef1d827627a301b0e0 (plain)
1
2
3
4
5
6
7
8
require File.expand_path('../../../spec_helper', __FILE__)
require 'timeout'

describe "Timeout::Error" do
  it "is a subclass of RuntimeError" do
    RuntimeError.should be_ancestor_of(Timeout::Error)
  end
end