summaryrefslogtreecommitdiffstats
path: root/spec/unit/type/file/owner_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/type/file/owner_spec.rb')
-rwxr-xr-xspec/unit/type/file/owner_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/type/file/owner_spec.rb b/spec/unit/type/file/owner_spec.rb
index a077ccec2..8b58505bd 100755
--- a/spec/unit/type/file/owner_spec.rb
+++ b/spec/unit/type/file/owner_spec.rb
@@ -7,7 +7,7 @@ property = Puppet::Type.type(:file).attrclass(:owner)
describe property do
before do
# FIXME: many of these tests exercise the provider rather than `owner`
- # and should be moved into provider tests. ~JW
+ # and should be moved into provider tests. ~JW
@provider = Puppet::Type.type(:file).provider(:posix).new
@provider.stubs(:uid).with("one").returns(1)
@@ -96,7 +96,7 @@ describe property do
@owner.must be_insync(10)
end
-
+
it "should not validate that users exist when a user is specified as an integer" do
@provider.expects(:uid).never
@provider.validuser?(10)