diff options
Diffstat (limited to 'spec/unit/plugins/elixir_spec.rb')
-rw-r--r-- | spec/unit/plugins/elixir_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/plugins/elixir_spec.rb b/spec/unit/plugins/elixir_spec.rb index 35c46490..371f8b0f 100644 --- a/spec/unit/plugins/elixir_spec.rb +++ b/spec/unit/plugins/elixir_spec.rb @@ -19,11 +19,11 @@ require "spec_helper" describe Ohai::System, "plugin elixir" do let(:plugin) { get_plugin("elixir") } - before(:each) do + before do plugin[:languages] = Mash.new end - it "should shellout to elixir -v" do + it "shellouts to elixir -v" do expect(plugin).to receive(:shell_out).with("elixir -v").and_return(mock_shell_out(0, "Elixir 1.0.2", "")) plugin.run end |