18F/micropurchase

View on GitHub
app/models/null_bid.rb

Summary

Maintainability
A
0 mins
Test Coverage
class NullBid
  def amount
    nil
  end

  def bidder
    nil
  end

  def bidder_id
    nil
  end

  def bidder_name
    nil
  end

  def decorated_bidder
    NullBidder.new
  end
end