Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/fastlane/plugin/retry_tests/helper/xcodebuild_string.rb

Instance Method Summary collapse

Instance Method Details

#testsuiteObject



7
8
9
10
11
12
13
# File 'lib/fastlane/plugin/retry_tests/helper/xcodebuild_string.rb', line 7

def testsuite
  if self.testsuite_swift?
    self.split('.')[1]
  else
    self
  end
end

#testsuite_swift?Boolean

Returns:

  • (Boolean)


3
4
5
# File 'lib/fastlane/plugin/retry_tests/helper/xcodebuild_string.rb', line 3

def testsuite_swift?
  self.include?('.')
end