Sha256: bf6fb798f84671dd5eb3b5bc0621efe240d25f3aaf82c9445efd13f7b0412c5e

Contents?: true

Size: 436 Bytes

Versions: 1

Compression:

Stored size: 436 Bytes

Contents

require "spec_helper"

# to run specs with what"s remembered from vcr
#   $ rake
#
# to run specs with new fresh data from aws api calls
#   $ rake clean:vcr ; time rake
describe AwsRsync::CLI do
  before(:all) do
    @args = "--from Tung"
  end

  describe "aws-rsync" do
    it "should hello world" do
      out = execute("exe/aws-rsync hello world #{@args}")
      expect(out).to include("from: Tung\nHello world")
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
aws-rsync-0.1.0 spec/lib/cli_spec.rb