Sha256: 3f7232786fff91041ab8a0446d1b43349c819b3989fc2c48dd5f92b8b0641b7c
Contents?: true
Size: 561 Bytes
Versions: 132
Compression:
Stored size: 561 Bytes
Contents
require 'spec_helper' property[:os] = nil set :os, :family => 'alpine' describe get_command(:enable_service, 'nginx') do it { should eq 'rc-update add nginx' } end describe get_command(:disable_service, 'nginx') do it { should eq 'rc-update del nginx' } end describe get_command(:start_service, 'nginx') do it { should eq 'rc-service nginx start' } end describe get_command(:stop_service, 'nginx') do it { should eq 'rc-service nginx stop' } end describe get_command(:restart_service, 'nginx') do it { should eq 'rc-service nginx restart' } end
Version data entries
132 entries across 132 versions & 1 rubygems