mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
13 lines
239 B
Ruby
13 lines
239 B
Ruby
require 'spec_helper'
|
|
require 'pdf/inspector'
|
|
|
|
module PDFExportSpecUtils
|
|
def column_title(column_name)
|
|
label_title(column_name).upcase
|
|
end
|
|
|
|
def label_title(column_name)
|
|
WorkPackage.human_attribute_name(column_name)
|
|
end
|
|
end
|