Skip to content

Commit

Permalink
Seed both stations with sample data
Browse files Browse the repository at this point in the history
  • Loading branch information
richo committed May 7, 2013
1 parent 95ee464 commit 316fbe2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/test_station_integration.py
Expand Up @@ -93,6 +93,12 @@ def test_handshake(self):
active = self.stations["active"]
passive = self.stations["passive"]

# Put some unique objects in each station

for i in xrange(100):
active.write("active%d" % i)
passive.write("passive%d" % i)

read_sockets = [];
write_sockets = [];
def tick():
Expand Down

0 comments on commit 316fbe2

Please sign in to comment.