test/unit/log_file_test.rb in flashplayer-10.1.6.pre vs test/unit/log_file_test.rb in flashplayer-10.1.7.pre

- old
+ new

@@ -18,19 +18,30 @@ teardown do remove_file @flashlog end should "read until killed" do - blocked = true t = Thread.new { @reader.tail blocked = false } assert blocked t.kill end + + + # This method only works when run alone - + # Under normal circumstances, the SproutTestCase + # clears out any Rake tasks that have been defined + # and we don't have an easy way to redefine the + # task... + #should "read from rake task" do + #FlashPlayer::LogFile.any_instance.stubs(:logger).returns StringIO.new + #FlashPlayer::LogFile.any_instance.expects(:read_flashlog_at) + #Rake.application[:flashlog].invoke + #end end end