| Rcov report for: app/models/hudson_api_error.rb| Name | Total lines | Lines of code | Total coverage | Code coverage | | app/models/hudson_api_error.rb | 13 | 8 | | |
1 # To change this template, choose Tools | Templates | 2 # and open the template in the editor. | 3 | 4 class HudsonApiError | 5 | 6 attr_reader :class_name, :method_name, :exception | 7 | 8 def initialize(class_name, method_name, exception) | 9 @class_name = class_name | 10 @method_name = method_name | 11 @exception = exception | 12 end | 13 end |
|