Sha256: 9c84cf9e3d7db372dd693c7eba916a34c6d7ea329ac5bb40cd3d09a5be1b1d51
Contents?: true
Size: 484 Bytes
Versions: 19
Compression:
Stored size: 484 Bytes
Contents
require 'spec_helper' describe Arachni::Error do it 'inherits from StandardError' do (Arachni::Error <= StandardError).should be_true caught = false begin fail Arachni::Error rescue StandardError => e caught = true end caught.should be_true caught = false begin fail Arachni::Error rescue caught = true end caught.should be_true end end
Version data entries
19 entries across 19 versions & 1 rubygems