Skip to content

Commit

Permalink
Silenced the session test case
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebayes committed Jan 15, 2011
1 parent d681f10 commit ab3ba31
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions test/unit/executable_session_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,30 +8,30 @@ class ExecutableSessionTest < Test::Unit::TestCase

setup do
# Uncomment the following to see interactive sessions:
Sprout.stdout = $stdout
Sprout.stderr = $stderr
#Sprout.stdout = $stdout
#Sprout.stderr = $stderr
end

should "execute without shell params" do
@fdb = Sprout::FDB.new
# Comment to hit real FDB:
#@fdb.binary_path = File.join fixtures, 'executable', 'flex3sdk_gem', 'fdb'
@fdb.binary_path = File.join fixtures, 'executable', 'flex3sdk_gem', 'fdb'

@fdb.execute false
@fdb.run

# Uncomment if you are on OSX and want to
# test the real FDB while running a real SWF:
Kernel.system 'open ~/Projects/Sprouts/flashsdk/test/fixtures/flashplayer/AsUnit\ Runner.swf'
@fdb.wait_for_prompt
#Kernel.system 'open ~/Projects/Sprouts/flashsdk/test/fixtures/flashplayer/AsUnit\ Runner.swf'
#@fdb.wait_for_prompt

@fdb.break "AsUnitRunner:12"

@fdb.continue
@fdb.continue

@fdb.handle_user_input
#@fdb.quit
#@fdb.handle_user_input
@fdb.quit
end

end
Expand Down

0 comments on commit ab3ba31

Please sign in to comment.