require 'spec_helper' require_relative '../helper_shared_context' require 'flydata/helper/action/clear' module Flydata module Helper module Action describe Clear do include_context 'helper context' describe "#command" do subject { described_class.new(config).command } it { is_expected.to eq("sync:clear -y") } end end end end end