Sha256: d7d0eb0e028a03fe09533382f94a30a76b8a36da159b3765cf685982407441dd

Contents?: true

Size: 568 Bytes

Versions: 1

Compression:

Stored size: 568 Bytes

Contents

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

    it 'generates correct output' do
      subject.options = { 'framework' => 'jekyll' }
      expect { subject.generate 'dummy_app' }.to output(/
Your new Jekyll site DummyApp has been created

Now do

    cd dummy_app
    bundle
    bundle exec jekyll serve

which will launch the site \(at http:\/\/localhost:4000\)

And presuming that works OK

    git add .
    git commit -m 'First commit'

You should also fill in your name in LICENSE.md
/).to_stdout
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
skellington-0.8.1 spec/jekyll/cli_spec.rb