Sha256: e6650508990e4eda2ff5361c6fd2870379dcfa98a7c09f7b954fbb201847f476
Contents?: true
Size: 1.51 KB
Versions: 13
Compression:
Stored size: 1.51 KB
Contents
require 'spec_helper' require_relative '../../../lib/locomotive/steam/initializers/sprockets' describe Locomotive::Steam::SprocketsEnvironment do 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 } context "config/autoprefixer.yml doesn't exist" do before { allow(File).to receive(:exists?).and_return false } it { expect(AutoprefixerRails).not_to receive(:install); subject } end context "config/autoprefixer.yml exists" do before { allow(File).to receive(:exists?).and_return(true) allow(YAML).to receive(:load_file).and_return({}) } it { expect(AutoprefixerRails).to receive(:install).and_return(true); subject } it 'warns developers if they notice bad performance when using autoprefixer' do curent_execjs_runtime = ENV['EXECJS_RUNTIME'] ENV['EXECJS_RUNTIME'] = 'NodeJS' expect(Locomotive::Common::Logger).not_to receive(:warn) expect(AutoprefixerRails).to receive(:install).and_return(true) subject ENV['EXECJS_RUNTIME'] = curent_execjs_runtime end end end end
Version data entries
13 entries across 13 versions & 1 rubygems