lib/serverspec/matchers/be_grouped_into.rb in serverspec-0.0.7 vs lib/serverspec/matchers/be_grouped_into.rb in serverspec-0.0.8

- old
+ new

@@ -1,6 +1,6 @@ RSpec::Matchers.define :be_grouped_into do |group| match do |file| - ret = ssh_exec(RSpec.configuration.host, commands.check_group(file, group)) + ret = ssh_exec(RSpec.configuration.host, commands.check_grouped(file, group)) ret[:exit_code] == 0 end end