@@ -93,7 +93,7 @@ def on_message(message)
93
93
end
94
94
95
95
describe 'spawning' do
96
- describe 'Actress#spawn' , :brittle do
96
+ describe 'Actress#spawn' do
97
97
behaviour = -> v { -> _ { v } }
98
98
subjects = { spawn : -> { Actress . spawn ( AdHoc , :ping , 'arg' , &behaviour ) } ,
99
99
context_spawn : -> { AdHoc . spawn ( :ping , 'arg' , &behaviour ) } ,
@@ -102,17 +102,16 @@ def on_message(message)
102
102
103
103
subjects . each do |desc , subject_definition |
104
104
describe desc do
105
- pending ( 'intermittent JRuby deadlock' ) ;
106
- #subject &subject_definition
107
- #after { terminate_actors subject }
108
- #its(:path) { should eq '/ping' }
109
- #its(:parent) { should eq ROOT }
110
- #its(:name) { should eq 'ping' }
111
- #it('executor should be global') { subject.executor.should eq Concurrent.configuration.global_task_pool }
112
- #its(:reference) { should eq subject }
113
- #it 'returns arg' do
114
- #subject.ask!(:anything).should eq 'arg'
115
- #end
105
+ subject &subject_definition
106
+ after { terminate_actors subject }
107
+ its ( :path ) { should eq '/ping' }
108
+ its ( :parent ) { pending ( 'intermittent JRuby deadlock' ) ; should eq ROOT }
109
+ its ( :name ) { should eq 'ping' }
110
+ it ( 'executor should be global' ) { subject . executor . should eq Concurrent . configuration . global_task_pool }
111
+ its ( :reference ) { should eq subject }
112
+ it 'returns arg' do
113
+ subject . ask! ( :anything ) . should eq 'arg'
114
+ end
116
115
end
117
116
end
118
117
end
0 commit comments