Rcov report for: app/helpers/rexml_helper.rb

NameTotal linesLines of codeTotal coverageCode coverage
app/helpers/rexml_helper.rb148
100.00%
100.00%
1 # $Id$
2 # To change this template, choose Tools | Templates
3 # and open the template in the editor.
4 
5 module RexmlHelper
6     
7   def get_element_value(element, name)
8     return "" if element == nil
9     return "" if element.get_text(name) == nil
10     return "" if element.get_text(name).value == nil
11     return element.get_text(name).value
12   end
13 
14 end