Add a test for the 'closed' attribute on the C-profiler object.
diff --git a/Lib/test/test_hotshot.py b/Lib/test/test_hotshot.py
index 2a6816f..ebd2aaa 100644
--- a/Lib/test/test_hotshot.py
+++ b/Lib/test/test_hotshot.py
@@ -63,8 +63,11 @@
     def run_test(self, callable, events, profiler=None):
         if profiler is None:
             profiler = self.new_profiler()
+        self.failUnless(not profiler._prof.closed)
         profiler.runcall(callable)
+        self.failUnless(not profiler._prof.closed)
         profiler.close()
+        self.failUnless(profiler._prof.closed)
         self.check_events(events)
 
     def test_addinfo(self):