serverspec/serverspec

View on GitHub
lib/serverspec/matcher/belong_to_primary_group.rb

Summary

Maintainability
A
0 mins
Test Coverage
RSpec::Matchers.define :belong_to_primary_group do |group|
  match do |user|
    user.belongs_to_primary_group?(group)
  end
end