Skip to content

Commit 8fdd455

Browse files
committed
test
1 parent 58e8525 commit 8fdd455

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

chef/spec/unit/provider/erl_call_spec.rb

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,22 @@
1818

1919
require File.expand_path(File.join(File.dirname(__FILE__), "..", "..", "spec_helper"))
2020

21-
describe Chef::Provider::Script, "action_run" do
21+
describe Chef::Provider::ErlCall, "action_run" do
2222
before(:each) do
2323
@node = mock("Chef::Node", :null_object => true)
2424
@new_resource = mock("Chef::Resource::ErlCall",
2525
:null_object => true,
2626
:code => "io:format(\"burritos~n\", []).",
27-
:interpreter => 'erl_call',
2827
:user => nil,
2928
:group => nil,
3029
:cookie => nil,
3130
:distributed => false,
3231
:name_type => "sname",
33-
:node_name => "chef@localhost"
32+
:node_name => "chef@localhost",
33+
:name => "test"
3434
)
35+
3536
@provider = Chef::Provider::ErlCall.new(@node, @new_resource)
3637
end
3738

38-
39-
4039
end

0 commit comments

Comments
 (0)