Sha256: 7dc87d2a2d582a61a9fb985e302d786694de3fc32b398872174895c0cfa94129

Contents?: true

Size: 298 Bytes

Versions: 6

Compression:

Stored size: 298 Bytes

Contents

module Skellington
  describe CLI do
    let :subject do
      described_class.new
    end

    it 'generates a Procfile' do
      subject.generate 'dummy-app'
      expect('dummy_app/Procfile').to have_content (
      """
      web: bundle exec rackup -p $PORT
      """
      )
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
skellington-0.8.9 spec/sinatra/root_files/procfile_spec.rb
skellington-0.8.8 spec/sinatra/root_files/procfile_spec.rb
skellington-0.8.7 spec/sinatra/root_files/procfile_spec.rb
skellington-0.8.6 spec/sinatra/root_files/procfile_spec.rb
skellington-0.8.5 spec/sinatra/root_files/procfile_spec.rb
skellington-0.8.4 spec/sinatra/root_files/procfile_spec.rb