Sha256: ee5c945431d1fb6c6bf5348ee67d5424a8a6b9eadc136cc27b3617a8c289b6b5
Contents?: true
Size: 465 Bytes
Versions: 18
Compression:
Stored size: 465 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Actions::ShowConfig do context '#initialize' do it 'has no special requirements' do expect { Actions::ShowConfig.new }.not_to raise_error end end context '#run' do it 'gathers all relevant information and prints them to stdout' do result = capture(:stdout) do Actions::ShowConfig.new.run end expect(result).to include('user_file') end end end
Version data entries
18 entries across 18 versions & 1 rubygems