blob: 2e7bd65a9654e2881cd38125a3fef4a60fb6d84b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/env ruby
require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper.rb')
require 'puppet/application/indirection_base'
describe Puppet::Application::IndirectionBase do
it "should support a 'from' terminus"
describe "setup" do
it "should fail if its interface does not support an indirection"
end
end
|