summaryrefslogtreecommitdiffstats
path: root/test/other/puppet.rb
diff options
context:
space:
mode:
authorJesse Wolfe <jes5199@gmail.com>2010-04-30 14:54:07 -0700
committertest branch <puppet-dev@googlegroups.com>2010-02-17 06:50:53 -0800
commit63e2e56d3172bdc80aaca5f5ddde5811728e3c76 (patch)
tree38e3607fe83223d135f1c327682dbd8698bb138d /test/other/puppet.rb
parentb6e2ce6a85c953fcd57a3b837ccaa794a634dc22 (diff)
downloadpuppet-63e2e56d3172bdc80aaca5f5ddde5811728e3c76.tar.gz
puppet-63e2e56d3172bdc80aaca5f5ddde5811728e3c76.tar.xz
puppet-63e2e56d3172bdc80aaca5f5ddde5811728e3c76.zip
feature #2276 Single Executable: subcommand method
Extract the logic to determine the subcommand name into a method. Signed-off-by: Jesse Wolfe <jes5199@gmail.com>
Diffstat (limited to 'test/other/puppet.rb')
-rwxr-xr-xtest/other/puppet.rb9
1 files changed, 1 insertions, 8 deletions
diff --git a/test/other/puppet.rb b/test/other/puppet.rb
index 1839333e5..2d55c2fba 100755
--- a/test/other/puppet.rb
+++ b/test/other/puppet.rb
@@ -86,14 +86,7 @@ class TestPuppetModule < Test::Unit::TestCase
end
def test_name
- # Make sure it defaults to $0 without the rb
- should = $0.gsub(/.+#{File::SEPARATOR}/,'').sub(/\.rb$/, '')
-
- assert_equal(should, Puppet[:name], "default name was not right")
-
- assert_nothing_raised("Could not reset name") do
- Puppet[:name] = "puppetca"
- end
+ Puppet[:name] = "puppetca"
assert_equal("puppetca", Puppet[:name], "name reset did not take")
end