camdub/Internships

View on GitHub
app/helpers/internships_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module InternshipsHelper
  
  def full_part_time(ft, pt)
    if ft && pt
      result = "Full and Part Time"
    elsif pt
      result = "Part Time"
    else
      result = "Full Time"
    end    
  end  
end