Sha256: 4aee2988d30b6ded4811bc967d82af4eac72a9e2075b7c756ed245d2946bfd76
Contents?: true
Size: 499 Bytes
Versions: 24
Compression:
Stored size: 499 Bytes
Contents
require 'spec_helper' require_relative '../helper_shared_context' module Flydata module Helper module Action describe RestartAgent do include_context 'helper context' describe "#execute" do subject { described_class.new(helper_conf).execute } it "executes the restart action" do expect(Open3).to receive(:capture3).with({}, "flydata restart --skip-helper") subject end end end end end end
Version data entries
24 entries across 24 versions & 1 rubygems