module RSpec::Matchers

def exist(*args)

expect(File).to exist("path/to/file")
@example

Passes if `actual.exist?` or `actual.exists?`
def exist(*args)
  BuiltIn::Exist.new(*args)
end