~ubuntu-branches/ubuntu/saucy/python-networkx/saucy

« back to all changes in this revision

Viewing changes to networkx/classes/tests/test_digraph.py

  • Committer: Package Import Robot
  • Author(s): Sandro Tosi
  • Date: 2012-06-14 23:46:38 UTC
  • mto: (1.4.1) (5.1.11 sid)
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: package-import@ubuntu.com-20120614234638-vojueocjsrz10tqn
Tags: upstream-1.7~rc1
ImportĀ upstreamĀ versionĀ 1.7~rc1

Show diffs side-by-side

added added

removed removed

Lines of Context:
207
207
        self.K3.node[0]={}
208
208
        self.K3.node[1]={}
209
209
        self.K3.node[2]={}
 
210
        self.P3.node={}
 
211
        self.P3.node[0]={}
 
212
        self.P3.node[1]={}
 
213
        self.P3.node[2]={}
210
214
 
211
215
    def test_data_input(self):
212
216
        G=self.Graph(data={1:[2],2:[1]}, name="test")