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

pulibrary / tigerdata-app / 08446ce4-7a5c-4747-9e3c-78b2b9815a03

10 Oct 2025 03:22PM UTC coverage: 90.897% (-0.08%) from 90.976%
08446ce4-7a5c-4747-9e3c-78b2b9815a03

Pull #2019

circleci

hectorcorrea
Remove code not longer needed
Pull Request #2019: Remove code used to experiment with Mediaflux custom headers

6 of 14 new or added lines in 8 files covered. (42.86%)

2 existing lines in 1 file now uncovered.

2696 of 2966 relevant lines covered (90.9%)

387.9 hits per line

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

0.0
/app/models/mediaflux/script_make_executable_request.rb
1
# frozen_string_literal: true
2
module Mediaflux
×
3
  class ScriptMakeExecutableRequest < Request
×
4
    # Constructor
5
    # @param session_token [String] the API token for the authenticated session
6
    # @param path [String] full path to the script to mark as executable
NEW
7
    def initialize(session_token:, path:)
×
NEW
8
      super(session_token: session_token)
×
9
      @path = path
×
10
    end
×
11

12
    # Specifies the Mediaflux service to use
13
    # @return [String]
14
    def self.service
×
15
      "asset.set.executable"
×
16
    end
×
17

18
    private
×
19

20
      # Mimics asset.set.executable :id path=/system/scripts/fileList.tcl :executable true
21
      def build_http_request_body(name:)
×
22
        super do |xml|
×
23
          xml.args do
×
24
            xml.id "path=#{@path}"
×
25
            xml.executable true
×
26
          end
×
27
        end
×
28
      end
×
29
  end
×
30
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