File: command_spec.rb

package info (click to toggle)
ruby-rsync 1.0.9-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 140 kB
  • sloc: ruby: 348; makefile: 3
file content (7 lines) | stat: -rw-r--r-- 180 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
require 'rsync/command'

describe Rsync::Command do
  it "should work" do
    Rsync::Command.run("/path/to/src/", "/path/to/dest", "-a").should be_kind_of(Rsync::Result)
  end
end