guard-rails-assets/spec/guard/rails-assets/cli_runner_spec.rb

20 lines
611 B
Ruby
Raw Normal View History

require 'spec_helper'
describe Guard::RailsAssets::CliRunner do
it 'should run the command' do
subject.stub(:system)
subject.should_receive(:system).with("RAILS_ENV=test bundle exec rake assets:clean assets:precompile")
subject.compile_assets
end
context 'with production environment' do
subject { Guard::RailsAssets::CliRunner.new(:rails_env => :production) }
it 'should run the command' do
subject.stub(:system)
subject.should_receive(:system).with("RAILS_ENV=production bundle exec rake assets:clean assets:precompile")
subject.compile_assets
end
end
end