appium_lib 16.3.0 → 16.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/test/first_test.rb DELETED
@@ -1,29 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
6
- #
7
- # http://www.apache.org/licenses/LICENSE-2.0
8
- #
9
- # Unless required by applicable law or agreed to in writing, software
10
- # distributed under the License is distributed on an "AS IS" BASIS,
11
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- # See the License for the specific language governing permissions and
13
- # limitations under the License.
14
-
15
- require 'minitest/autorun'
16
- require 'minitest/reporters'
17
- require 'minitest'
18
-
19
- begin
20
- Minitest::Reporters.use! [Minitest::Reporters::ProgressReporter.new]
21
- rescue Errno::ENOENT
22
- # Ignore since Minitest::Reporters::JUnitReporter.new fails in deleting files, sometimes
23
- end
24
-
25
- class SampleTest < Minitest::Test
26
- def test_test
27
- assert(true)
28
- end
29
- end