• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

jdantonio / concurrent-ruby / #711

24 Apr 2014 12:31AM UTC coverage: 77.282% (-20.5%) from 97.805%
#711

push

jdantonio
Attempting to fix a brittle test of Concurrent::timer.

1888 of 2443 relevant lines covered (77.28%)

544.53 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

77.78
/lib/concurrent/executor/immediate_executor.rb
1
module Concurrent
1✔
2
  class ImmediateExecutor
1✔
3

4
    def post(*args, &task)
1✔
5
      raise ArgumentError.new('no block given') unless block_given?
54✔
6
      task.call(*args)
54✔
7
      true
54✔
8
    end
9

10
    def <<(task)
1✔
11
      post(&task)
×
12
      self
×
13
    end
14
  end
15
end
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc