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

pulibrary / tigerdata-app / 58384df5-4328-40b4-9cad-0ff5f77cb960

27 Oct 2025 02:45PM UTC coverage: 91.291%. Remained the same
58384df5-4328-40b4-9cad-0ff5f77cb960

push

circleci

web-flow
Place the file path on its own line on the project dashboard (#2097)

Co-authored-by: Hector Correa <hector_correa@princeton.edu>

2757 of 3020 relevant lines covered (91.29%)

752.67 hits per line

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

100.0
/app/models/mediaflux/asset_destroy_request.rb
1
# frozen_string_literal: true
2
module Mediaflux
4✔
3
  class AssetDestroyRequest < Request
4✔
4
    attr_reader :collection, :members
4✔
5

6
    # Constructor
7
    # @param session_token [String] the API token for the authenticated session
8
    # @param collection [Int] the identifier of the collection to be destroyed
9
    # @param members [Boolean] A true/false flag the can destroy all members of a collection
10

11
    def initialize(session_token:, collection:, members:)
4✔
12
      super(session_token: session_token)
94✔
13
      @collection = collection
94✔
14
      @members = members
94✔
15
    end
16

17
    # Specifies the Mediaflux service to use when destroying assets
18
    # @return [String]
19
    def self.service
4✔
20
      "asset.destroy"
188✔
21
    end
22

23
      private
4✔
24

25
        def build_http_request_body(name:)
4✔
26
          super do |xml|
188✔
27
            xml.args do
188✔
28
              xml.id collection
188✔
29
              xml.members members
188✔
30
            end
31
          end
32
        end
33
  end
34
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