Sha256: 1add60e530414deb3020059e06f3ffe71f713b86b969180183de861fafa89f6d

Contents?: true

Size: 817 Bytes

Versions: 8

Compression:

Stored size: 817 Bytes

Contents

require 'spec_helper'

describe SimpleCommander::UI do
  include SimpleCommander::Methods

  describe '.replace_tokens' do
    it 'should replace tokens within a string, with hash values' do
      result = SimpleCommander::UI.replace_tokens 'Welcome :name, enjoy your :object'.freeze, name: 'TJ', object: 'cookie'
      expect(result).to eq('Welcome TJ, enjoy your cookie')
    end
  end

  describe 'progress' do
    it 'should not die on an empty list' do
      exception = false
      begin
        progress([]) {}
      rescue
        exception = true
      end
      expect(exception).not_to be true
    end
  end

  describe '.available_editor' do
    it 'should not fail on available editors with shell arguments' do
      expect(SimpleCommander::UI.available_editor('sh -c')).to eq('sh -c')
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
simple_commander-0.6.1 spec/ui_spec.rb
simple_commander-0.6.0 spec/ui_spec.rb
simple_commander-0.5.1 spec/ui_spec.rb
simple_commander-0.5.0 spec/ui_spec.rb
simple_commander-0.4.0 spec/ui_spec.rb
simple_commander-0.3.1 spec/ui_spec.rb
simple_commander-0.3.0 spec/ui_spec.rb
simple_commander-0.1.0 spec/ui_spec.rb