Sha256: e0243c9a3ab740f64cacafbad9f368ebf234f171482a08791a1c7de8c8459f48

Contents?: true

Size: 369 Bytes

Versions: 3

Compression:

Stored size: 369 Bytes

Contents

require 'spec_helper'

describe Simplate::Command do

  it '.prepare' do
    Simplate::Command.app_name = 'simplate'
    Simplate::Command.app_name.should eql('simplate')
  end

  it '.executables' do
    executables = Simplate::Command.executables('simplate2')

    Simplate::Command.app_name.should eql('simplate2')
    executables.class.should eql(Array)
  end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
simplate-0.1.1 spec/modules/command_spec.rb
simplate-0.1.0 spec/modules/command_spec.rb
simplate-0.0.10 spec/modules/command_spec.rb