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

jdantonio / concurrent-ruby / #740

23 May 2014 08:08PM UTC coverage: 81.072% (-16.2%) from 97.237%
#740

push

jdantonio
Merge pull request #96 from jdantonio/refactor/errors

Moved all custom errors into a single file and into the Concurrent module

17 of 18 new or added lines in 10 files covered. (94.44%)

466 existing lines in 32 files now uncovered.

2283 of 2816 relevant lines covered (81.07%)

472.41 hits per line

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

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

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

10
    def <<(task)
11
      post(&task)
1✔
UNCOV
12
      self
×
UNCOV
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