
gallio.RSpec.libs.rspec-1.2.7.lib.spec.matchers.exist.rb Maven / Gradle / Ivy
The newest version!
module Spec
module Matchers
# :call-seq:
# should exist
# should_not exist
#
# Passes if actual.exist?
def exist
Matcher.new :exist do
match do |actual|
actual.exist?
end
end
end
end
end
© 2015 - 2025 Weber Informatics LLC | Privacy Policy