merged/test/helpers/section_helper.rb

12 lines
130 B
Ruby

module Merged
module SectionHelper
def first
Section.first
end
def last
Section.last
end
end
end