class Shoulda::Matchers::Text

@private

def indented?

def indented?
  self =~ /\A +/
end

def list_item?

def list_item?
  self =~ LIST_ITEM_REGEXP
end

def match_as_list_item

def match_as_list_item
  match(LIST_ITEM_REGEXP)
end