# File lib/r10k/environment/svn.rb, line 67
  def status
    if !@path.exist?
      :absent
    elsif !@working_dir.is_svn?
      :mismatched
    elsif !(@remote == @working_dir.url)
      :mismatched
    elsif !@synced
      :outdated
    else
      :insync
    end
  end