queri 0.0.3 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (69) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +43 -4
  3. data/lib/queri/aggregate_report_helpers.rb +15 -0
  4. data/lib/queri/arg_helpers.rb +24 -0
  5. data/lib/queri/composite_agent_level_report_helpers.rb +19 -0
  6. data/lib/queri/composite_report_helpers.rb +14 -0
  7. data/lib/queri/stats/agents_and_sessions/agent_availability.rb +2 -49
  8. data/lib/queri/stats/answered_calls/agents_on_queue.rb +2 -49
  9. data/lib/queri/stats/answered_calls/all_calls.rb +2 -50
  10. data/lib/queri/stats/answered_calls/answered_calls_by_direction.rb +2 -51
  11. data/lib/queri/stats/answered_calls/answered_calls_by_queue.rb +2 -51
  12. data/lib/queri/stats/answered_calls/answered_calls_by_stints.rb +2 -51
  13. data/lib/queri/stats/answered_calls/calls_fully_within_the_given_time_interval.rb +2 -50
  14. data/lib/queri/stats/answered_calls/disconnection_causes.rb +2 -51
  15. data/lib/queri/stats/answered_calls/dnis_used.rb +2 -51
  16. data/lib/queri/stats/answered_calls/ivr_selection.rb +2 -51
  17. data/lib/queri/stats/answered_calls/music_on_hold_by_agent.rb +2 -49
  18. data/lib/queri/stats/answered_calls/queue_position.rb +2 -51
  19. data/lib/queri/stats/answered_calls/service_level_agreement.rb +2 -49
  20. data/lib/queri/stats/answered_calls/transfers.rb +2 -51
  21. data/lib/queri/stats/details_of_agent_sessions_and_pauses/detail_of_agent_pauses.rb +2 -54
  22. data/lib/queri/stats/details_of_agent_sessions_and_pauses/detail_of_agent_sessions.rb +2 -54
  23. data/lib/queri/stats/details_of_answered_calls/queue_details.rb +35 -0
  24. data/lib/queri/stats/details_of_answered_calls.rb +11 -0
  25. data/lib/queri/stats/unanswered_calls/all_calls_by_stints.rb +24 -0
  26. data/lib/queri/stats/unanswered_calls/call_overview.rb +29 -0
  27. data/lib/queri/stats/unanswered_calls/calls_fully_within_the_given_time_interval.rb +82 -0
  28. data/lib/queri/stats/unanswered_calls/disconnection_causes.rb +24 -0
  29. data/lib/queri/stats/unanswered_calls/dnis_used.rb +24 -0
  30. data/lib/queri/stats/unanswered_calls/dnis_used_for_all_calls.rb +24 -0
  31. data/lib/queri/stats/unanswered_calls/enter_queue_position.rb +24 -0
  32. data/lib/queri/stats/unanswered_calls/enter_queue_position_for_all_calls.rb +24 -0
  33. data/lib/queri/stats/unanswered_calls/inclusive_answered_service_level_agreement.rb +25 -0
  34. data/lib/queri/stats/unanswered_calls/inclusive_service_level_agreement.rb +25 -0
  35. data/lib/queri/stats/unanswered_calls/ivr_selection.rb +28 -0
  36. data/lib/queri/stats/unanswered_calls/ivr_selection_for_all_calls.rb +24 -0
  37. data/lib/queri/stats/unanswered_calls/unanswered_calls_by_key_press.rb +24 -0
  38. data/lib/queri/stats/unanswered_calls/unanswered_calls_by_queue.rb +25 -0
  39. data/lib/queri/stats/unanswered_calls/unanswered_calls_by_stints.rb +24 -0
  40. data/lib/queri/stats/unanswered_calls/unanswered_calls_distribution_by_length.rb +26 -0
  41. data/lib/queri/stats/unanswered_calls/unanswered_outbound_calls_by_agent.rb +24 -0
  42. data/lib/queri/stats.rb +19 -2
  43. data/lib/queri/version.rb +1 -1
  44. data/spec/stats/agents_and_sessions/agent_availability_spec.rb +1 -1
  45. data/spec/stats/agents_and_sessions/agents_and_sessions_spec.rb +1 -1
  46. data/spec/stats/answered_calls/agents_on_queue_spec.rb +1 -1
  47. data/spec/stats/answered_calls/all_calls_spec.rb +1 -1
  48. data/spec/stats/answered_calls/answered_calls_spec.rb +1 -1
  49. data/spec/stats/details_of_answered_calls/details_of_answered_calls_spec.rb +7 -0
  50. data/spec/stats/details_of_answered_calls/queue_details_spec.rb +20 -0
  51. data/spec/stats/unanswered_calls/all_calls_by_stints_spec.rb +22 -0
  52. data/spec/stats/unanswered_calls/call_overview_spec.rb +22 -0
  53. data/spec/stats/unanswered_calls/calls_fully_within_the_given_time_interval_spec.rb +20 -0
  54. data/spec/stats/unanswered_calls/disconnection_causes_spec.rb +20 -0
  55. data/spec/stats/unanswered_calls/dnis_used_for_all_calls_spec.rb +22 -0
  56. data/spec/stats/unanswered_calls/dnis_used_spec.rb +22 -0
  57. data/spec/stats/unanswered_calls/enter_queue_position_for_all_calls_spec.rb +22 -0
  58. data/spec/stats/unanswered_calls/enter_queue_position_spec.rb +22 -0
  59. data/spec/stats/unanswered_calls/inclusive_answered_service_level_agreement_spec.rb +20 -0
  60. data/spec/stats/unanswered_calls/inclusive_service_level_agreement_spec.rb +20 -0
  61. data/spec/stats/unanswered_calls/ivr_selection_for_all_calls_spec.rb +22 -0
  62. data/spec/stats/unanswered_calls/ivr_selection_spec.rb +22 -0
  63. data/spec/stats/unanswered_calls/unanswered_calls_by_key_press_spec.rb +22 -0
  64. data/spec/stats/unanswered_calls/unanswered_calls_by_queue_spec.rb +22 -0
  65. data/spec/stats/unanswered_calls/unanswered_calls_by_stints_spec.rb +22 -0
  66. data/spec/stats/unanswered_calls/unanswered_calls_distribution_by_length_spec.rb +20 -0
  67. data/spec/stats/unanswered_calls/unanswered_outbound_calls_by_agent_spec.rb +22 -0
  68. metadata +64 -3
  69. /data/lib/queri/stats/{details_of_agents_sessions_and_pauses.rb → details_of_agent_sessions_and_pauses.rb} +0 -0
@@ -0,0 +1,20 @@
1
+ require 'spec_helper'
2
+
3
+ describe Queri::Stats::UnansweredCalls::CallsFullyWithinTheGivenTimeInterval do
4
+ let(:report_class) { Queri::Stats::UnansweredCalls::CallsFullyWithinTheGivenTimeInterval }
5
+ let(:xml_code) { report_class.xml_code }
6
+
7
+ before { Queri.configure_with(File.join(File.dirname(__FILE__), '..', '..', 'config.yml')) }
8
+
9
+ it_behaves_like "a report class"
10
+
11
+ it_behaves_like "a report method"
12
+
13
+ it_behaves_like "a queuemetrics report"
14
+
15
+ it_behaves_like "a stats report"
16
+
17
+ describe "An instance of", Queri::Stats::UnansweredCalls::CallsFullyWithinTheGivenTimeInterval do
18
+ it_behaves_like "an aggregate report instance"
19
+ end
20
+ end
@@ -0,0 +1,20 @@
1
+ require 'spec_helper'
2
+
3
+ describe Queri::Stats::UnansweredCalls::DisconnectionCauses do
4
+ let(:report_class) { Queri::Stats::UnansweredCalls::DisconnectionCauses }
5
+ let(:xml_code) { report_class.xml_code }
6
+
7
+ before { Queri.configure_with(File.join(File.dirname(__FILE__), '..', '..', 'config.yml')) }
8
+
9
+ it_behaves_like "a report class"
10
+
11
+ it_behaves_like "a report method"
12
+
13
+ it_behaves_like "a queuemetrics report"
14
+
15
+ it_behaves_like "a stats report"
16
+
17
+ describe "An instance of", Queri::Stats::UnansweredCalls::DisconnectionCauses do
18
+ it_behaves_like "a composite aggregate report instance"
19
+ end
20
+ end
@@ -0,0 +1,22 @@
1
+ require 'spec_helper'
2
+
3
+ describe Queri::Stats::UnansweredCalls::DnisUsedForAllCalls do
4
+ let(:report_class) { Queri::Stats::UnansweredCalls::DnisUsedForAllCalls }
5
+ let(:xml_code) { report_class.xml_code }
6
+
7
+ before do
8
+ Queri.configure_with(File.join(File.dirname(__FILE__), '..', '..', 'config.yml'))
9
+ end
10
+
11
+ it_behaves_like "a report class"
12
+
13
+ it_behaves_like "a report method"
14
+
15
+ it_behaves_like "a queuemetrics report"
16
+
17
+ it_behaves_like "a stats report"
18
+
19
+ describe "An instance of", Queri::Stats::UnansweredCalls::DnisUsedForAllCalls do
20
+ it_behaves_like "a composite aggregate report instance"
21
+ end
22
+ end
@@ -0,0 +1,22 @@
1
+ require 'spec_helper'
2
+
3
+ describe Queri::Stats::UnansweredCalls::DnisUsed do
4
+ let(:report_class) { Queri::Stats::UnansweredCalls::DnisUsed }
5
+ let(:xml_code) { report_class.xml_code }
6
+
7
+ before do
8
+ Queri.configure_with(File.join(File.dirname(__FILE__), '..', '..', 'config.yml'))
9
+ end
10
+
11
+ it_behaves_like "a report class"
12
+
13
+ it_behaves_like "a report method"
14
+
15
+ it_behaves_like "a queuemetrics report"
16
+
17
+ it_behaves_like "a stats report"
18
+
19
+ describe "An instance of", Queri::Stats::UnansweredCalls::DnisUsed do
20
+ it_behaves_like "a composite aggregate report instance"
21
+ end
22
+ end
@@ -0,0 +1,22 @@
1
+ require 'spec_helper'
2
+
3
+ describe Queri::Stats::UnansweredCalls::EnterQueuePositionForAllCalls do
4
+ let(:report_class) { Queri::Stats::UnansweredCalls::EnterQueuePositionForAllCalls }
5
+ let(:xml_code) { report_class.xml_code }
6
+
7
+ before do
8
+ Queri.configure_with(File.join(File.dirname(__FILE__), '..', '..', 'config.yml'))
9
+ end
10
+
11
+ it_behaves_like "a report class"
12
+
13
+ it_behaves_like "a report method"
14
+
15
+ it_behaves_like "a queuemetrics report"
16
+
17
+ it_behaves_like "a stats report"
18
+
19
+ describe "An instance of", Queri::Stats::UnansweredCalls::EnterQueuePositionForAllCalls do
20
+ it_behaves_like "a composite aggregate report instance"
21
+ end
22
+ end
@@ -0,0 +1,22 @@
1
+ require 'spec_helper'
2
+
3
+ describe Queri::Stats::UnansweredCalls::EnterQueuePosition do
4
+ let(:report_class) { Queri::Stats::UnansweredCalls::EnterQueuePosition }
5
+ let(:xml_code) { report_class.xml_code }
6
+
7
+ before do
8
+ Queri.configure_with(File.join(File.dirname(__FILE__), '..', '..', 'config.yml'))
9
+ end
10
+
11
+ it_behaves_like "a report class"
12
+
13
+ it_behaves_like "a report method"
14
+
15
+ it_behaves_like "a queuemetrics report"
16
+
17
+ it_behaves_like "a stats report"
18
+
19
+ describe "An instance of", Queri::Stats::UnansweredCalls::EnterQueuePosition do
20
+ it_behaves_like "a composite aggregate report instance"
21
+ end
22
+ end
@@ -0,0 +1,20 @@
1
+ require 'spec_helper'
2
+
3
+ describe Queri::Stats::UnansweredCalls::InclusiveAnsweredServiceLevelAgreement do
4
+ let(:report_class) { Queri::Stats::UnansweredCalls::InclusiveAnsweredServiceLevelAgreement }
5
+ let(:xml_code) { report_class.xml_code }
6
+
7
+ before { Queri.configure_with(File.join(File.dirname(__FILE__), '..', '..', 'config.yml')) }
8
+
9
+ it_behaves_like "a report class"
10
+
11
+ it_behaves_like "a report method"
12
+
13
+ it_behaves_like "a queuemetrics report"
14
+
15
+ it_behaves_like "a stats report"
16
+
17
+ describe "An instance of", Queri::Stats::UnansweredCalls::InclusiveAnsweredServiceLevelAgreement do
18
+ it_behaves_like "a composite aggregate report instance"
19
+ end
20
+ end
@@ -0,0 +1,20 @@
1
+ require 'spec_helper'
2
+
3
+ describe Queri::Stats::UnansweredCalls::InclusiveServiceLevelAgreement do
4
+ let(:report_class) { Queri::Stats::UnansweredCalls::InclusiveServiceLevelAgreement }
5
+ let(:xml_code) { report_class.xml_code }
6
+
7
+ before { Queri.configure_with(File.join(File.dirname(__FILE__), '..', '..', 'config.yml')) }
8
+
9
+ it_behaves_like "a report class"
10
+
11
+ it_behaves_like "a report method"
12
+
13
+ it_behaves_like "a queuemetrics report"
14
+
15
+ it_behaves_like "a stats report"
16
+
17
+ describe "An instance of", Queri::Stats::UnansweredCalls::InclusiveServiceLevelAgreement do
18
+ it_behaves_like "a composite aggregate report instance"
19
+ end
20
+ end
@@ -0,0 +1,22 @@
1
+ require 'spec_helper'
2
+
3
+ describe Queri::Stats::UnansweredCalls::IvrSelectionForAllCalls do
4
+ let(:report_class) { Queri::Stats::UnansweredCalls::IvrSelectionForAllCalls }
5
+ let(:xml_code) { report_class.xml_code }
6
+
7
+ before do
8
+ Queri.configure_with(File.join(File.dirname(__FILE__), '..', '..', 'config.yml'))
9
+ end
10
+
11
+ it_behaves_like "a report class"
12
+
13
+ it_behaves_like "a report method"
14
+
15
+ it_behaves_like "a queuemetrics report"
16
+
17
+ it_behaves_like "a stats report"
18
+
19
+ describe "An instance of", Queri::Stats::UnansweredCalls::IvrSelectionForAllCalls do
20
+ it_behaves_like "a composite aggregate report instance"
21
+ end
22
+ end
@@ -0,0 +1,22 @@
1
+ require 'spec_helper'
2
+
3
+ describe Queri::Stats::UnansweredCalls::IvrSelection do
4
+ let(:report_class) { Queri::Stats::UnansweredCalls::IvrSelection }
5
+ let(:xml_code) { report_class.xml_code }
6
+
7
+ before do
8
+ Queri.configure_with(File.join(File.dirname(__FILE__), '..', '..', 'config.yml'))
9
+ end
10
+
11
+ it_behaves_like "a report class"
12
+
13
+ it_behaves_like "a report method"
14
+
15
+ it_behaves_like "a queuemetrics report"
16
+
17
+ it_behaves_like "a stats report"
18
+
19
+ describe "An instance of", Queri::Stats::UnansweredCalls::IvrSelection do
20
+ it_behaves_like "a composite aggregate report instance"
21
+ end
22
+ end
@@ -0,0 +1,22 @@
1
+ require 'spec_helper'
2
+
3
+ describe Queri::Stats::UnansweredCalls::UnansweredCallsByKeyPress do
4
+ let(:report_class) { Queri::Stats::UnansweredCalls::UnansweredCallsByKeyPress }
5
+ let(:xml_code) { report_class.xml_code }
6
+
7
+ before do
8
+ Queri.configure_with(File.join(File.dirname(__FILE__), '..', '..', 'config.yml'))
9
+ end
10
+
11
+ it_behaves_like "a report class"
12
+
13
+ it_behaves_like "a report method"
14
+
15
+ it_behaves_like "a queuemetrics report"
16
+
17
+ it_behaves_like "a stats report"
18
+
19
+ describe "An instance of", Queri::Stats::UnansweredCalls::UnansweredCallsByKeyPress do
20
+ it_behaves_like "an agent-level report instance"
21
+ end
22
+ end
@@ -0,0 +1,22 @@
1
+ require 'spec_helper'
2
+
3
+ describe Queri::Stats::UnansweredCalls::UnansweredCallsByQueue do
4
+ let(:report_class) { Queri::Stats::UnansweredCalls::UnansweredCallsByQueue }
5
+ let(:xml_code) { report_class.xml_code }
6
+
7
+ before do
8
+ Queri.configure_with(File.join(File.dirname(__FILE__), '..', '..', 'config.yml'))
9
+ end
10
+
11
+ it_behaves_like "a report class"
12
+
13
+ it_behaves_like "a report method"
14
+
15
+ it_behaves_like "a queuemetrics report"
16
+
17
+ it_behaves_like "a stats report"
18
+
19
+ describe "An instance of", Queri::Stats::UnansweredCalls::UnansweredCallsByQueue do
20
+ it_behaves_like "a composite aggregate report instance"
21
+ end
22
+ end
@@ -0,0 +1,22 @@
1
+ require 'spec_helper'
2
+
3
+ describe Queri::Stats::UnansweredCalls::UnansweredCallsByStints do
4
+ let(:report_class) { Queri::Stats::UnansweredCalls::UnansweredCallsByStints }
5
+ let(:xml_code) { report_class.xml_code }
6
+
7
+ before do
8
+ Queri.configure_with(File.join(File.dirname(__FILE__), '..', '..', 'config.yml'))
9
+ end
10
+
11
+ it_behaves_like "a report class"
12
+
13
+ it_behaves_like "a report method"
14
+
15
+ it_behaves_like "a queuemetrics report"
16
+
17
+ it_behaves_like "a stats report"
18
+
19
+ describe "An instance of", Queri::Stats::UnansweredCalls::UnansweredCallsByStints do
20
+ it_behaves_like "a composite aggregate report instance"
21
+ end
22
+ end
@@ -0,0 +1,20 @@
1
+ require 'spec_helper'
2
+
3
+ describe Queri::Stats::UnansweredCalls::UnansweredCallsDistributionByLength do
4
+ let(:report_class) { Queri::Stats::UnansweredCalls::UnansweredCallsDistributionByLength }
5
+ let(:xml_code) { report_class.xml_code }
6
+
7
+ before { Queri.configure_with(File.join(File.dirname(__FILE__), '..', '..', 'config.yml')) }
8
+
9
+ it_behaves_like "a report class"
10
+
11
+ it_behaves_like "a report method"
12
+
13
+ it_behaves_like "a queuemetrics report"
14
+
15
+ it_behaves_like "a stats report"
16
+
17
+ describe "An instance of", Queri::Stats::UnansweredCalls::UnansweredCallsDistributionByLength do
18
+ it_behaves_like "a composite aggregate report instance"
19
+ end
20
+ end
@@ -0,0 +1,22 @@
1
+ require 'spec_helper'
2
+
3
+ describe Queri::Stats::UnansweredCalls::UnansweredOutboundCallsByAgent do
4
+ let(:report_class) { Queri::Stats::UnansweredCalls::UnansweredOutboundCallsByAgent }
5
+ let(:xml_code) { report_class.xml_code }
6
+
7
+ before do
8
+ Queri.configure_with(File.join(File.dirname(__FILE__), '..', '..', 'config.yml'))
9
+ end
10
+
11
+ it_behaves_like "a report class"
12
+
13
+ it_behaves_like "a report method"
14
+
15
+ it_behaves_like "a queuemetrics report"
16
+
17
+ it_behaves_like "a stats report"
18
+
19
+ describe "An instance of", Queri::Stats::UnansweredCalls::UnansweredOutboundCallsByAgent do
20
+ it_behaves_like "an agent-level report instance"
21
+ end
22
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: queri
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brad Rice
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-01-30 00:00:00.000000000 Z
11
+ date: 2014-02-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -66,6 +66,10 @@ files:
66
66
  - README.md
67
67
  - Rakefile
68
68
  - lib/queri.rb
69
+ - lib/queri/aggregate_report_helpers.rb
70
+ - lib/queri/arg_helpers.rb
71
+ - lib/queri/composite_agent_level_report_helpers.rb
72
+ - lib/queri/composite_report_helpers.rb
69
73
  - lib/queri/realtime.rb
70
74
  - lib/queri/realtime/agents.rb
71
75
  - lib/queri/realtime/queues.rb
@@ -86,11 +90,30 @@ files:
86
90
  - lib/queri/stats/answered_calls/queue_position.rb
87
91
  - lib/queri/stats/answered_calls/service_level_agreement.rb
88
92
  - lib/queri/stats/answered_calls/transfers.rb
93
+ - lib/queri/stats/details_of_agent_sessions_and_pauses.rb
89
94
  - lib/queri/stats/details_of_agent_sessions_and_pauses/detail_of_agent_pauses.rb
90
95
  - lib/queri/stats/details_of_agent_sessions_and_pauses/detail_of_agent_sessions.rb
91
- - lib/queri/stats/details_of_agents_sessions_and_pauses.rb
96
+ - lib/queri/stats/details_of_answered_calls.rb
97
+ - lib/queri/stats/details_of_answered_calls/queue_details.rb
92
98
  - lib/queri/stats/unanswered_calls.rb
93
99
  - lib/queri/stats/unanswered_calls/all_calls.rb
100
+ - lib/queri/stats/unanswered_calls/all_calls_by_stints.rb
101
+ - lib/queri/stats/unanswered_calls/call_overview.rb
102
+ - lib/queri/stats/unanswered_calls/calls_fully_within_the_given_time_interval.rb
103
+ - lib/queri/stats/unanswered_calls/disconnection_causes.rb
104
+ - lib/queri/stats/unanswered_calls/dnis_used.rb
105
+ - lib/queri/stats/unanswered_calls/dnis_used_for_all_calls.rb
106
+ - lib/queri/stats/unanswered_calls/enter_queue_position.rb
107
+ - lib/queri/stats/unanswered_calls/enter_queue_position_for_all_calls.rb
108
+ - lib/queri/stats/unanswered_calls/inclusive_answered_service_level_agreement.rb
109
+ - lib/queri/stats/unanswered_calls/inclusive_service_level_agreement.rb
110
+ - lib/queri/stats/unanswered_calls/ivr_selection.rb
111
+ - lib/queri/stats/unanswered_calls/ivr_selection_for_all_calls.rb
112
+ - lib/queri/stats/unanswered_calls/unanswered_calls_by_key_press.rb
113
+ - lib/queri/stats/unanswered_calls/unanswered_calls_by_queue.rb
114
+ - lib/queri/stats/unanswered_calls/unanswered_calls_by_stints.rb
115
+ - lib/queri/stats/unanswered_calls/unanswered_calls_distribution_by_length.rb
116
+ - lib/queri/stats/unanswered_calls/unanswered_outbound_calls_by_agent.rb
94
117
  - lib/queri/version.rb
95
118
  - queri.gemspec
96
119
  - spec/queri_spec.rb
@@ -117,9 +140,28 @@ files:
117
140
  - spec/stats/details_of_agent_sessions_and_pauses/detail_of_agent_pauses_spec.rb
118
141
  - spec/stats/details_of_agent_sessions_and_pauses/detail_of_agent_sessions_spec.rb
119
142
  - spec/stats/details_of_agent_sessions_and_pauses/details_of_agent_sessions_and_pauses_spec.rb
143
+ - spec/stats/details_of_answered_calls/details_of_answered_calls_spec.rb
144
+ - spec/stats/details_of_answered_calls/queue_details_spec.rb
120
145
  - spec/stats/stats_spec.rb
146
+ - spec/stats/unanswered_calls/all_calls_by_stints_spec.rb
121
147
  - spec/stats/unanswered_calls/all_calls_spec.rb
148
+ - spec/stats/unanswered_calls/call_overview_spec.rb
149
+ - spec/stats/unanswered_calls/calls_fully_within_the_given_time_interval_spec.rb
150
+ - spec/stats/unanswered_calls/disconnection_causes_spec.rb
151
+ - spec/stats/unanswered_calls/dnis_used_for_all_calls_spec.rb
152
+ - spec/stats/unanswered_calls/dnis_used_spec.rb
153
+ - spec/stats/unanswered_calls/enter_queue_position_for_all_calls_spec.rb
154
+ - spec/stats/unanswered_calls/enter_queue_position_spec.rb
155
+ - spec/stats/unanswered_calls/inclusive_answered_service_level_agreement_spec.rb
156
+ - spec/stats/unanswered_calls/inclusive_service_level_agreement_spec.rb
157
+ - spec/stats/unanswered_calls/ivr_selection_for_all_calls_spec.rb
158
+ - spec/stats/unanswered_calls/ivr_selection_spec.rb
159
+ - spec/stats/unanswered_calls/unanswered_calls_by_key_press_spec.rb
160
+ - spec/stats/unanswered_calls/unanswered_calls_by_queue_spec.rb
161
+ - spec/stats/unanswered_calls/unanswered_calls_by_stints_spec.rb
162
+ - spec/stats/unanswered_calls/unanswered_calls_distribution_by_length_spec.rb
122
163
  - spec/stats/unanswered_calls/unanswered_calls_spec.rb
164
+ - spec/stats/unanswered_calls/unanswered_outbound_calls_by_agent_spec.rb
123
165
  - spec/support/shared/shared_examples_for_agent_level_report_instance.rb
124
166
  - spec/support/shared/shared_examples_for_aggregate_report_instance.rb
125
167
  - spec/support/shared/shared_examples_for_composite_agent_level_report_instance.rb
@@ -181,9 +223,28 @@ test_files:
181
223
  - spec/stats/details_of_agent_sessions_and_pauses/detail_of_agent_pauses_spec.rb
182
224
  - spec/stats/details_of_agent_sessions_and_pauses/detail_of_agent_sessions_spec.rb
183
225
  - spec/stats/details_of_agent_sessions_and_pauses/details_of_agent_sessions_and_pauses_spec.rb
226
+ - spec/stats/details_of_answered_calls/details_of_answered_calls_spec.rb
227
+ - spec/stats/details_of_answered_calls/queue_details_spec.rb
184
228
  - spec/stats/stats_spec.rb
229
+ - spec/stats/unanswered_calls/all_calls_by_stints_spec.rb
185
230
  - spec/stats/unanswered_calls/all_calls_spec.rb
231
+ - spec/stats/unanswered_calls/call_overview_spec.rb
232
+ - spec/stats/unanswered_calls/calls_fully_within_the_given_time_interval_spec.rb
233
+ - spec/stats/unanswered_calls/disconnection_causes_spec.rb
234
+ - spec/stats/unanswered_calls/dnis_used_for_all_calls_spec.rb
235
+ - spec/stats/unanswered_calls/dnis_used_spec.rb
236
+ - spec/stats/unanswered_calls/enter_queue_position_for_all_calls_spec.rb
237
+ - spec/stats/unanswered_calls/enter_queue_position_spec.rb
238
+ - spec/stats/unanswered_calls/inclusive_answered_service_level_agreement_spec.rb
239
+ - spec/stats/unanswered_calls/inclusive_service_level_agreement_spec.rb
240
+ - spec/stats/unanswered_calls/ivr_selection_for_all_calls_spec.rb
241
+ - spec/stats/unanswered_calls/ivr_selection_spec.rb
242
+ - spec/stats/unanswered_calls/unanswered_calls_by_key_press_spec.rb
243
+ - spec/stats/unanswered_calls/unanswered_calls_by_queue_spec.rb
244
+ - spec/stats/unanswered_calls/unanswered_calls_by_stints_spec.rb
245
+ - spec/stats/unanswered_calls/unanswered_calls_distribution_by_length_spec.rb
186
246
  - spec/stats/unanswered_calls/unanswered_calls_spec.rb
247
+ - spec/stats/unanswered_calls/unanswered_outbound_calls_by_agent_spec.rb
187
248
  - spec/support/shared/shared_examples_for_agent_level_report_instance.rb
188
249
  - spec/support/shared/shared_examples_for_aggregate_report_instance.rb
189
250
  - spec/support/shared/shared_examples_for_composite_agent_level_report_instance.rb