Sha256: dfa593d8c7ba5ca77d1a1b8fe4d3236570239275cdb9be77608a38c5f2613139

Contents?: true

Size: 1 KB

Versions: 92

Compression:

Stored size: 1 KB

Contents

#! /usr/bin/env ruby
require 'spec_helper'
require 'puppet/file_serving/mount'

describe Puppet::FileServing::Mount do
  it "should use 'mount[$name]' as its string form" do
    Puppet::FileServing::Mount.new("foo").to_s.should == "mount[foo]"
  end
end

describe Puppet::FileServing::Mount, " when initializing" do
  it "should fail on non-alphanumeric name" do
    proc { Puppet::FileServing::Mount.new("non alpha") }.should raise_error(ArgumentError)
  end

  it "should allow dashes in its name" do
    Puppet::FileServing::Mount.new("non-alpha").name.should == "non-alpha"
  end
end

describe Puppet::FileServing::Mount, " when finding files" do
  it "should fail" do
    lambda { Puppet::FileServing::Mount.new("test").find("foo", :one => "two") }.should raise_error(NotImplementedError)
  end
end

describe Puppet::FileServing::Mount, " when searching for files" do
  it "should fail" do
    lambda { Puppet::FileServing::Mount.new("test").search("foo", :one => "two") }.should raise_error(NotImplementedError)
  end
end

Version data entries

92 entries across 92 versions & 2 rubygems

Version Path
puppet-3.1.1 spec/unit/file_serving/mount_spec.rb
librarian-puppet-0.9.8 vendor/gems/ruby/1.9.1/gems/puppet-3.1.0/spec/unit/file_serving/mount_spec.rb
puppet-3.1.0 spec/unit/file_serving/mount_spec.rb
puppet-3.1.0.rc2 spec/unit/file_serving/mount_spec.rb
puppet-3.1.0.rc1 spec/unit/file_serving/mount_spec.rb
puppet-3.0.2 spec/unit/file_serving/mount_spec.rb
puppet-3.0.2.rc3 spec/unit/file_serving/mount_spec.rb
puppet-3.0.2.rc2 spec/unit/file_serving/mount_spec.rb
puppet-3.0.2.rc1 spec/unit/file_serving/mount_spec.rb
puppet-3.0.1 spec/unit/file_serving/mount_spec.rb
puppet-3.0.1.rc1 spec/unit/file_serving/mount_spec.rb
puppet-3.0.0 spec/unit/file_serving/mount_spec.rb