pboling/status_tag

View on GitHub
lib/status_tag/null_presenter.rb

Summary

Maintainability
A
0 mins
Test Coverage
# An example of what a Presenter would look like.
module StatusTag
  class NullPresenter < Presenter
    ORDERED_CHOICES = [StatusTag::Choice.new(text: "null presenter")]
  end
end