Skip to content

Commit

Permalink
add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Noah Magram committed Mar 8, 2016
1 parent 8334328 commit 7bc2054
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spec/unit/asset_sync_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@

it "log_silently? should always be true if ENV['RAILS_GROUPS'] == 'assets'" do
AssetSync.config.log_silently = false
expect(ENV).to receive(:[]).with('RAILS_GROUPS').and_return('assets')
# make sure ENV is actually being checked ...
expect(ENV).to receive(:[]).with('RAILS_GROUPS').and_return('assets')
expect(AssetSync.config.log_silently?).to eq(true)
end

Expand Down

0 comments on commit 7bc2054

Please sign in to comment.