fog-proxmox 0.15.0 → 0.15.1

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/tasks/test.rake DELETED
@@ -1,65 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # Copyright 2018 Tristan Robert
4
-
5
- # This file is part of Fog::Proxmox.
6
-
7
- # Fog::Proxmox is free software: you can redistribute it and/or modify
8
- # it under the terms of the GNU General Public License as published by
9
- # the Free Software Foundation, either version 3 of the License, or
10
- # (at your option) any later version.
11
-
12
- # Fog::Proxmox is distributed in the hope that it will be useful,
13
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- # GNU General Public License for more details.
16
-
17
- # You should have received a copy of the GNU General Public License
18
- # along with Fog::Proxmox. If not, see <http://www.gnu.org/licenses/>.
19
-
20
- namespace :spec do
21
- desc 'Run fog-proxmox spec/*'
22
- Rake::TestTask.new do |t|
23
- t.name = 'all'
24
- t.description = 'Run all specs'
25
- t.libs.push %w[lib spec]
26
- t.pattern = 'spec/**/*_spec.rb'
27
- t.verbose = true
28
- end
29
-
30
- desc 'Run fog-proxmox spec/helpers/*'
31
- Rake::TestTask.new do |t|
32
- t.name = 'helpers'
33
- t.description = 'Run helpers tests'
34
- t.libs.push %w[lib spec]
35
- t.pattern = 'spec/helpers/**/*_spec.rb'
36
- t.verbose = true
37
- end
38
-
39
- desc 'Run fog-proxmox spec/compute'
40
- Rake::TestTask.new do |t|
41
- t.name = 'compute'
42
- t.description = 'Run compute API tests'
43
- t.libs.push %w[lib spec]
44
- t.pattern = 'spec/**/compute_spec.rb'
45
- t.verbose = true
46
- end
47
-
48
- desc 'Run fog-proxmox spec/identity'
49
- Rake::TestTask.new do |t|
50
- t.name = 'identity'
51
- t.description = 'Run identity API tests'
52
- t.libs.push %w[lib spec]
53
- t.pattern = 'spec/**/identity_spec.rb'
54
- t.verbose = true
55
- end
56
-
57
- desc 'Run fog-proxmox spec/network'
58
- Rake::TestTask.new do |t|
59
- t.name = 'network'
60
- t.description = 'Run network API tests'
61
- t.libs.push %w[lib spec]
62
- t.pattern = 'spec/**/network_spec.rb'
63
- t.verbose = true
64
- end
65
- end