18F/micropurchase

View on GitHub
app/presenters/bidding_status_presenter/base.rb

Summary

Maintainability
A
0 mins
Test Coverage
class BiddingStatusPresenter::Base
  attr_reader :auction

  def initialize(auction)
    @auction = auction
  end

  def start_label
    ''
  end

  def deadline_label
    ''
  end

  def relative_time
    ''
  end

  def label_class
    ''
  end

  def label
    ''
  end

  def tag_data_value_status
    ''
  end

  def tag_data_label_2
    ''
  end

  def tag_data_value_2
    ''
  end
end