spec/unit/initializers/sprockets_spec.rb in locomotivecms_steam-1.2.1 vs spec/unit/initializers/sprockets_spec.rb in locomotivecms_steam-1.3.0.rc1
- old
+ new
@@ -6,23 +6,9 @@
let(:root) { '.' }
let(:options) { { minify: true } }
let(:env) { described_class.new(root, options) }
- describe '#install_yui_compressor' do
-
- context 'java not installed' do
-
- before { allow(env).to receive(:is_java_installed?).and_return(false) }
-
- subject { env.send(:install_yui_compressor, options) }
-
- it { is_expected.to eq(false) }
-
- end
-
- end
-
describe '#install_autoprefixer' do
let(:options) { { minify: false } }
subject { env }