summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-12-17 22:19:49 +0000
committerluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-12-17 22:19:49 +0000
commit10dbb17ed1b2241618f13973d02e17de1dd4e44f (patch)
tree1619f774897304979ff26cf5dfc5df7eb53bfbb2 /test
parentb01ffe6fa50e92a4586199096c1f6995ad8dd617 (diff)
downloadpuppet-10dbb17ed1b2241618f13973d02e17de1dd4e44f.tar.gz
puppet-10dbb17ed1b2241618f13973d02e17de1dd4e44f.tar.xz
puppet-10dbb17ed1b2241618f13973d02e17de1dd4e44f.zip
Some more graph optimizations; I think I am now close enough that I am basically just going to spend a bit more time making sure the modeling is right in the transactions, and then walk away for now.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1947 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'test')
-rwxr-xr-xtest/other/transactions.rb10
1 files changed, 6 insertions, 4 deletions
diff --git a/test/other/transactions.rb b/test/other/transactions.rb
index d9a173986..2ae4b1b13 100755
--- a/test/other/transactions.rb
+++ b/test/other/transactions.rb
@@ -677,10 +677,12 @@ class TestTransactions < Test::Unit::TestCase
assert(trans.relgraph.vertex?(ra),
"Did not add ra to rel_graph" % name)
- # Now make sure this generated resource has the same relationships as the generating
- # resource
- assert(trans.relgraph.edge?(yay, ra),
- "yay is not required by ra")
+ # Now make sure this generated resource has the same relationships as
+ # the generating resource
+ #assert(trans.relgraph.edge?(yay, ra),
+ # "yay is not required by ra")
+ assert(trans.relgraph.edge?(ya, rah),
+ "rah is not subscribed to ya")
assert(trans.relgraph.edge?(ya, ra),
"ra is not subscribed to ya")