File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change 18
18
19
19
describe PoisePython ::Resources ::PythonPackage do
20
20
describe PoisePython ::Resources ::PythonPackage ::Resource do
21
+ describe '#response_file' do
22
+ recipe do
23
+ python_package 'foo' do
24
+ response_file 'bar'
25
+ end
26
+ end
27
+
28
+ it { expect { subject } . to raise_error NoMethodError }
29
+ end # /describe #response_file
30
+
31
+ describe '#response_file_variables' do
32
+ recipe do
33
+ python_package 'foo' do
34
+ response_file_variables 'bar'
35
+ end
36
+ end
37
+
38
+ it { expect { subject } . to raise_error NoMethodError }
39
+ end # /describe #response_file_variables
40
+
41
+ describe '#source' do
42
+ recipe do
43
+ python_package 'foo' do
44
+ source 'bar'
45
+ end
46
+ end
47
+
48
+ it { expect { subject } . to raise_error NoMethodError }
49
+ end # /describe #source
21
50
end # /describe PoisePython::Resources::PythonPackage::Resource
22
51
23
52
describe PoisePython ::Resources ::PythonPackage ::Provider do
You can’t perform that action at this time.
0 commit comments