Merge branch 'master' into graph-product
[graph.njae.git] / spec / graph / graph_spec.rb
index 670d252892cbf0a3d1f6bbc09f0a04915ed61d63..be6a7b5a332bc03dbde25cfebc751f83e1f8dcd1 100644 (file)
@@ -30,7 +30,7 @@ module GraphNjae
     describe "adds attribues" do
       it "adds then reports arbitrary attributes" do
         g.score = 15
-        g.score == 15
+        g.score.should == 15
       end
     end # adds attributes
     
@@ -127,8 +127,22 @@ module GraphNjae
         pg.should have(4).vertices
         pg.should have(2).edges
       end
+      
+      it "finds a product graph of not-quite-simple graph" do
+      end
 
     end
     
+    describe "similarity flood" do
+        it "similarity floods a graph of two nodes" do
+        end
+        
+        it "similarity floods a graph of three nodes, a -- b -- c" do
+        end
+        
+        it "simialrity floods a sample graph" do
+        end
+    end
+    
   end
 end