We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8672425 commit 14deab8Copy full SHA for 14deab8
spec/concurrent/actress_spec.rb
@@ -15,7 +15,11 @@ def backdoor(&block)
15
16
describe 'Concurrent::Actress' do
17
prepend_before do
18
- @do_not_reset = true
+ @do_not_reset = true
19
+ @@isolated_from_other_tests ||= begin
20
+ sleep 0.1
21
+ true
22
+ end
23
end
24
25
def terminate_actors(*actors)
@@ -159,7 +163,7 @@ def on_message(message)
159
163
160
164
161
165
it 'has children set after a child is created' do
162
- child = parent.ask!(:child) # FIXME may get stuck!!
166
+ child = parent.ask!(:child)
167
parent.ask!(nil).should include(child)
168
child.ask!(nil).should eq parent
169
0 commit comments