spec/embork/borkfile_spec.rb in embork-0.0.12 vs spec/embork/borkfile_spec.rb in embork-0.0.13
- old
+ new
@@ -33,14 +33,10 @@
it 'has no html files' do
expect(borkfile.html).to be_empty
end
- it 'keeps five old versions' do
- expect(borkfile.keep_old_versions).to eq(5)
- end
-
it 'has no es6 module namespace defined' do
expect(borkfile.es6_namespace).to eq(nil)
end
it 'has no default compressor' do
@@ -97,13 +93,9 @@
expect(borkfile.html).not_to include 'prod.html'
end
it 'uses pushstate middleware to respond with index.html' do
expect(borkfile.backend).to eq(:static_index)
- end
-
- it 'keeps the specified number of old versions' do
- expect(borkfile.keep_old_versions).to eq(10)
end
it 'sets up an es6 module namespace' do
expect(borkfile.es6_namespace).to eq('my-package')
end