• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

pulibrary / allsearch_api / 0400cc50-b3f0-4794-8616-b4382e0acdd0

14 Oct 2025 03:57AM UTC coverage: 94.558% (-5.0%) from 99.514%
0400cc50-b3f0-4794-8616-b4382e0acdd0

Pull #395

circleci

sandbergja
Migrate Library Staff Controller away from ActionController
Pull Request #395: Migrate a few more controllers away from Rails

8 of 8 new or added lines in 4 files covered. (100.0%)

93 existing lines in 21 files now uncovered.

973 of 1029 relevant lines covered (94.56%)

71.0 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/app/models/library_staff.rb
1
# frozen_string_literal: true
2

3
# This class is responsible for translating LibraryStaffRecords
4
# into an API response
5
class LibraryStaff
2✔
6
  include Parsed
2✔
7
  attr_reader :query_terms, :service_response
2✔
8

9
  def initialize(query_terms:)
2✔
10
    @query_terms = query_terms
9✔
11
    @service_response = library_staff_service_response
9✔
12
  end
13

14
  def library_staff_service_response
2✔
15
    unescaped_terms = URI::DEFAULT_PARSER.unescape(query_terms)
11✔
16
    LibraryStaffRecord.query(unescaped_terms)
11✔
17
  end
18

19
  def number
2✔
UNCOV
20
    service_response.count
7✔
21
  end
22

23
  def more_link
2✔
24
    URI::HTTPS.build(host: 'library.princeton.edu', path: '/about/staff-directory',
15✔
25
                     query: "combine=#{query_terms}")
26
  end
27

28
  def documents
2✔
UNCOV
29
    service_response.first(3)
7✔
30
  end
31
end
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc