summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2007-02-27 22:14:56 +0000
committerluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2007-02-27 22:14:56 +0000
commit672e281c62cdae3fc9e675b0850465c61cbff5df (patch)
tree1c9ec486150bbb8dfca9a774a746369496785233 /test
parent87f100aa6ffc3087028a956ab73e19daf8f27f52 (diff)
downloadpuppet-672e281c62cdae3fc9e675b0850465c61cbff5df.tar.gz
puppet-672e281c62cdae3fc9e675b0850465c61cbff5df.tar.xz
puppet-672e281c62cdae3fc9e675b0850465c61cbff5df.zip
Fixing #142. As expected, trivial.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@2232 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'test')
-rwxr-xr-xtest/certmgr/ca.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/certmgr/ca.rb b/test/certmgr/ca.rb
index d01725970..aca674f02 100755
--- a/test/certmgr/ca.rb
+++ b/test/certmgr/ca.rb
@@ -67,6 +67,15 @@ class TestCA < Test::Unit::TestCase
assert_equal(list.sort, ca.list.sort, "list was not correct")
end
+
+ # #142 - test storing the public key
+ def test_store_public_key
+ ca = mkca
+ assert_nothing_raised do
+ ca.mkrootcert
+ end
+ assert(FileTest.exists?(Puppet[:capub]), "did not store public key")
+ end
end
# $Id$