Skip to content

Instantly share code, notes, and snippets.

@joemsak
Forked from anonymous/gist:2414148
Created April 18, 2012 15:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joemsak/2414155 to your computer and use it in GitHub Desktop.
Save joemsak/2414155 to your computer and use it in GitHub Desktop.
#controller
def index
@ordered_medications = @visit.pds_prescriptions.ordered_medications.order(:label)
@prn_medications = @visit.pds_prescriptions.prn.order('start_datetime DESC')
#raise params[:print].inspect
#raise get_report_model(params[:print] == 'active').inspect
report_model = get_report_model(params[:print] == 'active')
respond_with :report_model => report_model, :visit => @visit, :print => params[:print]
end
#spec
it "get_report_model should hide inactive meds on request" do
controller.should_receive(:get_report_model).with(false)
get 'index', :visit_id => @visit.id
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment