Sha256: 1ed07efc9cb6f55555e7a876711c996dd01560989dc3295daf3af01c0f0dd91a
Contents?: true
Size: 1.54 KB
Versions: 22
Compression:
Stored size: 1.54 KB
Contents
describe Nanoc::CLI::Commands::Shell, site: true, stdio: true do describe '#run' do before do # Prevent double-loading expect(Nanoc::CLI).to receive(:setup) end it 'can be invoked' do context = Object.new allow(Nanoc::Int::Context).to receive(:new).with(anything).and_return(context) expect(context).to receive(:pry) Nanoc::CLI.run(['shell']) end end describe '#env_for_site' do subject { described_class.env_for_site(site) } before do File.write('content/hello.md', 'Hello!') File.write('layouts/default.erb', '<title>MY SITE!</title><%= yield %>') end let(:site) do Nanoc::Int::SiteLoader.new.new_from_cwd end it 'returns views' do expect(subject[:items]).to be_a(Nanoc::ItemCollectionWithRepsView) expect(subject[:layouts]).to be_a(Nanoc::LayoutCollectionView) expect(subject[:config]).to be_a(Nanoc::ConfigView) end it 'returns correct items' do expect(subject[:items].size).to eq(1) expect(subject[:items].first.identifier.to_s).to eq('/hello.md') end it 'returns correct layouts' do expect(subject[:layouts].size).to eq(1) expect(subject[:layouts].first.identifier.to_s).to eq('/default.erb') end it 'returns items with reps' do expect(subject[:items].first.reps).not_to be_nil expect(subject[:items].first.reps.first.name).to eq(:default) end it 'returns items with rep paths' do expect(subject[:items].first.reps.first.path).to eq('/hello.md') end end end
Version data entries
22 entries across 22 versions & 1 rubygems
Version | Path |
---|---|
nanoc-4.4.7 | spec/nanoc/cli/commands/shell_spec.rb |
nanoc-4.4.6 | spec/nanoc/cli/commands/shell_spec.rb |