adhearsion 2.5.4 → 2.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (78) hide show
  1. checksums.yaml +4 -4
  2. data/.rspec +1 -0
  3. data/CHANGELOG.md +15 -0
  4. data/README.markdown +2 -1
  5. data/Rakefile +1 -6
  6. data/adhearsion.gemspec +4 -3
  7. data/features/cli_daemon.feature +2 -4
  8. data/features/cli_restart.feature +14 -5
  9. data/features/cli_start.feature +0 -2
  10. data/features/cli_stop.feature +15 -6
  11. data/lib/adhearsion.rb +21 -23
  12. data/lib/adhearsion/call.rb +49 -5
  13. data/lib/adhearsion/call_controller.rb +29 -11
  14. data/lib/adhearsion/call_controller/dial.rb +21 -9
  15. data/lib/adhearsion/call_controller/menu_dsl.rb +12 -12
  16. data/lib/adhearsion/call_controller/menu_dsl/array_match_calculator.rb +1 -1
  17. data/lib/adhearsion/call_controller/menu_dsl/fixnum_match_calculator.rb +1 -0
  18. data/lib/adhearsion/call_controller/menu_dsl/string_match_calculator.rb +1 -1
  19. data/lib/adhearsion/call_controller/output.rb +36 -7
  20. data/lib/adhearsion/call_controller/output/abstract_player.rb +4 -0
  21. data/lib/adhearsion/call_controller/record.rb +1 -0
  22. data/lib/adhearsion/cli_commands/ahn_command.rb +7 -4
  23. data/lib/adhearsion/cli_commands/plugin_command.rb +2 -0
  24. data/lib/adhearsion/generators.rb +2 -4
  25. data/lib/adhearsion/generators/app/templates/simon_game_spec.rb +20 -20
  26. data/lib/adhearsion/initializer.rb +2 -2
  27. data/lib/adhearsion/plugin.rb +6 -6
  28. data/lib/adhearsion/punchblock_plugin.rb +3 -4
  29. data/lib/adhearsion/punchblock_plugin/initializer.rb +2 -1
  30. data/lib/adhearsion/router.rb +7 -7
  31. data/lib/adhearsion/router/route.rb +10 -4
  32. data/lib/adhearsion/rspec.rb +2 -0
  33. data/lib/adhearsion/version.rb +1 -1
  34. data/spec/adhearsion/call_controller/dial_spec.rb +589 -557
  35. data/spec/adhearsion/call_controller/input_spec.rb +91 -91
  36. data/spec/adhearsion/call_controller/menu_dsl/array_match_calculator_spec.rb +29 -29
  37. data/spec/adhearsion/call_controller/menu_dsl/calculated_match_collection_spec.rb +6 -6
  38. data/spec/adhearsion/call_controller/menu_dsl/calculated_match_spec.rb +19 -19
  39. data/spec/adhearsion/call_controller/menu_dsl/fixnum_match_calculator_spec.rb +6 -6
  40. data/spec/adhearsion/call_controller/menu_dsl/match_calculator_spec.rb +1 -1
  41. data/spec/adhearsion/call_controller/menu_dsl/menu_builder_spec.rb +21 -17
  42. data/spec/adhearsion/call_controller/menu_dsl/menu_spec.rb +96 -83
  43. data/spec/adhearsion/call_controller/menu_dsl/range_match_calculator_spec.rb +5 -5
  44. data/spec/adhearsion/call_controller/menu_dsl/string_match_calculator_spec.rb +9 -9
  45. data/spec/adhearsion/call_controller/output/async_player_spec.rb +14 -4
  46. data/spec/adhearsion/call_controller/output/formatter_spec.rb +14 -14
  47. data/spec/adhearsion/call_controller/output/player_spec.rb +15 -5
  48. data/spec/adhearsion/call_controller/output_spec.rb +126 -78
  49. data/spec/adhearsion/call_controller/record_spec.rb +38 -26
  50. data/spec/adhearsion/call_controller/utility_spec.rb +11 -11
  51. data/spec/adhearsion/call_controller_spec.rb +176 -136
  52. data/spec/adhearsion/call_spec.rb +443 -218
  53. data/spec/adhearsion/calls_spec.rb +33 -33
  54. data/spec/adhearsion/configuration_spec.rb +61 -61
  55. data/spec/adhearsion/console_spec.rb +29 -29
  56. data/spec/adhearsion/events_spec.rb +14 -14
  57. data/spec/adhearsion/generators_spec.rb +1 -1
  58. data/spec/adhearsion/initializer_spec.rb +42 -42
  59. data/spec/adhearsion/logging_spec.rb +33 -33
  60. data/spec/adhearsion/outbound_call_spec.rb +69 -55
  61. data/spec/adhearsion/plugin_spec.rb +53 -44
  62. data/spec/adhearsion/process_spec.rb +21 -21
  63. data/spec/adhearsion/punchblock_plugin/initializer_spec.rb +68 -52
  64. data/spec/adhearsion/punchblock_plugin_spec.rb +6 -6
  65. data/spec/adhearsion/router/evented_route_spec.rb +2 -2
  66. data/spec/adhearsion/router/openended_route_spec.rb +9 -9
  67. data/spec/adhearsion/router/route_spec.rb +61 -31
  68. data/spec/adhearsion/router/unaccepting_route_spec.rb +13 -13
  69. data/spec/adhearsion/router_spec.rb +47 -33
  70. data/spec/adhearsion/statistics/dump_spec.rb +6 -6
  71. data/spec/adhearsion/statistics_spec.rb +9 -9
  72. data/spec/adhearsion_spec.rb +23 -20
  73. data/spec/spec_helper.rb +3 -6
  74. data/spec/support/call_controller_test_helpers.rb +7 -7
  75. data/spec/support/initializer_stubs.rb +1 -1
  76. data/spec/support/punchblock_mocks.rb +1 -1
  77. metadata +22 -10
  78. data/features/support/utils.rb +0 -9
@@ -6,33 +6,33 @@ describe Adhearsion::Statistics::Dump do
6
6
  it "should have a timestamp" do
7
7
  origin_time = Time.now
8
8
  dump = Adhearsion::Statistics::Dump.new timestamp: origin_time
9
- dump.timestamp.should == origin_time
9
+ expect(dump.timestamp).to eq(origin_time)
10
10
  end
11
11
 
12
12
  it "should have a hash of call counts" do
13
13
  counts = {dialed: 0, offered: 0, routed: 0, rejected: 0, active: 0}
14
14
  dump = Adhearsion::Statistics::Dump.new call_counts: counts
15
- dump.call_counts.should == counts
15
+ expect(dump.call_counts).to eq(counts)
16
16
  end
17
17
 
18
18
  it "should have a hash of call counts by route" do
19
19
  counts = {"my route" => 1, "your route" => 10}
20
20
  dump = Adhearsion::Statistics::Dump.new calls_by_route: counts
21
- dump.calls_by_route.should == counts
21
+ expect(dump.calls_by_route).to eq(counts)
22
22
  end
23
23
 
24
24
  it "should be equal to another dump if they share the same timestamp" do
25
25
  origin_time = Time.now
26
26
  dump1 = Adhearsion::Statistics::Dump.new timestamp: origin_time
27
27
  dump2 = Adhearsion::Statistics::Dump.new timestamp: origin_time
28
- dump1.should be == dump2
28
+ expect(dump1).to eq(dump2)
29
29
  end
30
30
 
31
31
  it "should compare based on the timestamp" do
32
32
  origin_time = Time.now
33
33
  dump1 = Adhearsion::Statistics::Dump.new timestamp: origin_time
34
34
  dump2 = Adhearsion::Statistics::Dump.new timestamp: (origin_time + 1)
35
- dump1.should be < dump2
36
- dump2.should be > dump1
35
+ expect(dump1).to be < dump2
36
+ expect(dump2).to be > dump1
37
37
  end
38
38
  end
@@ -11,7 +11,7 @@ describe Adhearsion::Statistics do
11
11
 
12
12
  before do
13
13
  Celluloid::Actor[:statistics] = described_class.new
14
- Adhearsion.active_calls.stub count: 0
14
+ allow(Adhearsion.active_calls).to receive_messages count: 0
15
15
  end
16
16
 
17
17
  after do
@@ -21,25 +21,25 @@ describe Adhearsion::Statistics do
21
21
 
22
22
  describe "#dump" do
23
23
  it "should report 0 calls offered, routed, rejected, active & completed" do
24
- subject.dump.call_counts.should == {dialed: 0, offered: 0, routed: 0, rejected: 0, active: 0}
24
+ expect(subject.dump.call_counts).to eq({dialed: 0, offered: 0, routed: 0, rejected: 0, active: 0})
25
25
  end
26
26
 
27
27
  it "should report 0 calls for each route in the router" do
28
- subject.dump.calls_by_route.should == {}
28
+ expect(subject.dump.calls_by_route).to eq({})
29
29
  Adhearsion.router.route 'your route', Adhearsion::CallController
30
30
  Adhearsion.router.route 'my route', Adhearsion::CallController
31
- subject.dump.calls_by_route.should == {'your route' => 0, 'my route' => 0}
31
+ expect(subject.dump.calls_by_route).to eq({'your route' => 0, 'my route' => 0})
32
32
  end
33
33
  end
34
34
 
35
35
  it "should listen for dialed call events and increment the dialed call count" do
36
36
  Adhearsion::Events.trigger_immediately :call_dialed, :foo_call
37
- subject.dump.call_counts.should == {dialed: 1, offered: 0, routed: 0, rejected: 0, active: 0}
37
+ expect(subject.dump.call_counts).to eq({dialed: 1, offered: 0, routed: 0, rejected: 0, active: 0})
38
38
  end
39
39
 
40
40
  it "should listen for call offer events and increment the offered call count" do
41
41
  Adhearsion::Events.trigger_immediately :punchblock, Punchblock::Event::Offer.new
42
- subject.dump.call_counts.should == {dialed: 0, offered: 1, routed: 0, rejected: 0, active: 0}
42
+ expect(subject.dump.call_counts).to eq({dialed: 0, offered: 1, routed: 0, rejected: 0, active: 0})
43
43
  end
44
44
 
45
45
  context "when call_routed events are triggered" do
@@ -53,16 +53,16 @@ describe Adhearsion::Statistics do
53
53
  end
54
54
 
55
55
  it "should increment the routed call count" do
56
- subject.dump.call_counts.should == {dialed: 0, offered: 0, routed: 1, rejected: 0, active: 0}
56
+ expect(subject.dump.call_counts).to eq({dialed: 0, offered: 0, routed: 1, rejected: 0, active: 0})
57
57
  end
58
58
 
59
59
  it "should increment the calls_by_route counter for the route matched" do
60
- subject.dump.calls_by_route.should == {'your route' => 0, 'my route' => 1}
60
+ expect(subject.dump.calls_by_route).to eq({'your route' => 0, 'my route' => 1})
61
61
  end
62
62
  end
63
63
 
64
64
  it "should listen for rejected call events and increment the rejected call count" do
65
65
  Adhearsion::Events.trigger_immediately :call_rejected, call: :foo, reason: :bar
66
- subject.dump.call_counts.should == {dialed: 0, offered: 0, routed: 0, rejected: 1, active: 0}
66
+ expect(subject.dump.call_counts).to eq({dialed: 0, offered: 0, routed: 0, rejected: 1, active: 0})
67
67
  end
68
68
  end
@@ -6,42 +6,42 @@ describe Adhearsion do
6
6
  describe "#root=" do
7
7
  it "should update properly the config root variable" do
8
8
  Adhearsion.root = "./"
9
- Adhearsion.config[:platform].root.should be == Dir.getwd
9
+ expect(Adhearsion.config[:platform].root).to eq(Dir.getwd)
10
10
  end
11
11
 
12
12
  it "should update properly the config root variable when path is nil" do
13
13
  Adhearsion.root = nil
14
- Adhearsion.config[:platform].root.should be_nil
14
+ expect(Adhearsion.config[:platform].root).to be_nil
15
15
  end
16
16
  end
17
17
 
18
18
  describe "#root" do
19
19
  it "should return the set root" do
20
20
  Adhearsion.root = "./"
21
- Adhearsion.root.should be == Dir.getwd
21
+ expect(Adhearsion.root).to eq(Dir.getwd)
22
22
  end
23
23
  end
24
24
 
25
25
  describe "#ahn_root=" do
26
26
  it "should update properly the config root variable" do
27
27
  Adhearsion.ahn_root = "./"
28
- Adhearsion.config[:platform].root.should be == Dir.getwd
28
+ expect(Adhearsion.config[:platform].root).to eq(Dir.getwd)
29
29
  end
30
30
 
31
31
  it "should update properly the config root variable when path is nil" do
32
32
  Adhearsion.ahn_root = nil
33
- Adhearsion.config[:platform].root.should be_nil
33
+ expect(Adhearsion.config[:platform].root).to be_nil
34
34
  end
35
35
  end
36
36
 
37
37
  describe "#config" do
38
38
  it "should return a Configuration instance" do
39
- subject.config.should be_instance_of Adhearsion::Configuration
39
+ expect(subject.config).to be_instance_of Adhearsion::Configuration
40
40
  end
41
41
 
42
42
  it "should execute a block" do
43
43
  foo = Object.new
44
- foo.should_receive(:bar).once
44
+ expect(foo).to receive(:bar).once
45
45
  Adhearsion.config do |config|
46
46
  foo.bar
47
47
  end
@@ -51,15 +51,18 @@ describe Adhearsion do
51
51
  describe "#environments" do
52
52
  it "should be the collection of valid environments" do
53
53
  Adhearsion.config.valid_environments << :foo
54
- Adhearsion.environments.should include :foo
54
+ expect(Adhearsion.environments).to include :foo
55
55
  end
56
56
  end
57
57
 
58
58
  describe "#router" do
59
- its(:router) { should be_a Adhearsion::Router }
59
+ describe '#router' do
60
+ subject { super().router }
61
+ it { is_expected.to be_a Adhearsion::Router }
62
+ end
60
63
 
61
64
  it "should always use the same router" do
62
- Adhearsion.router.should be Adhearsion.router
65
+ expect(Adhearsion.router).to be Adhearsion.router
63
66
  end
64
67
 
65
68
  it "should pass a block along to the router" do
@@ -68,45 +71,45 @@ describe Adhearsion do
68
71
  foo = self
69
72
  end
70
73
 
71
- foo.should be Adhearsion.router
74
+ expect(foo).to be Adhearsion.router
72
75
  end
73
76
  end
74
77
 
75
78
  describe "#active_calls" do
76
79
  it "should be a calls collection" do
77
- Adhearsion.active_calls.should be_a Adhearsion::Calls
80
+ expect(Adhearsion.active_calls).to be_a Adhearsion::Calls
78
81
  end
79
82
 
80
83
  it "should return the same instance each time" do
81
- Adhearsion.active_calls.should be Adhearsion.active_calls
84
+ expect(Adhearsion.active_calls).to be Adhearsion.active_calls
82
85
  end
83
86
  end
84
87
 
85
88
  describe "#statistics" do
86
89
  it "should be a statistics aggregator" do
87
- Adhearsion.statistics.should be_a Adhearsion::Statistics
90
+ expect(Adhearsion.statistics).to be_a Adhearsion::Statistics
88
91
  end
89
92
 
90
93
  it "should return the same instance each time" do
91
- Adhearsion.statistics.should be Adhearsion.statistics
94
+ expect(Adhearsion.statistics).to be Adhearsion.statistics
92
95
  end
93
96
 
94
97
  it "should create a new aggregator if the existing one dies" do
95
98
  original = Adhearsion.statistics
96
99
  original.terminate
97
- original.should_not be_alive
100
+ expect(original.alive?).to be false
98
101
 
99
102
  sleep 0.25
100
103
 
101
104
  current = Adhearsion.statistics
102
- current.should be_alive
103
- current.should_not be original
105
+ expect(current).to be_alive
106
+ expect(current).not_to be original
104
107
  end
105
108
  end
106
109
 
107
110
  describe "#status" do
108
111
  it "should be the process status name" do
109
- Adhearsion.status.should be == :booting
112
+ expect(Adhearsion.status).to eq(:booting)
110
113
  end
111
114
  end
112
115
 
@@ -114,7 +117,7 @@ describe Adhearsion do
114
117
  Dir['{bin,features,lib,spec}/**/*.rb'].each do |filename|
115
118
  File.open filename do |file|
116
119
  first_line = file.first
117
- first_line.should == "# encoding: utf-8\n"
120
+ expect(first_line).to eq("# encoding: utf-8\n")
118
121
  end
119
122
  end
120
123
  end
@@ -21,15 +21,12 @@ Bundler.require(:default, :test) if defined?(Bundler)
21
21
  Dir[File.dirname(__FILE__) + "/support/**/*.rb"].each { |f| require f }
22
22
 
23
23
  RSpec.configure do |config|
24
- config.treat_symbols_as_metadata_keys_with_true_values = true
25
24
  config.mock_framework = :rspec
26
25
  config.filter_run :focus => true
27
26
  config.run_all_when_everything_filtered = true
28
- config.color_enabled = true
27
+ config.color = true
29
28
 
30
- config.mock_with :rspec do |mocks|
31
- mocks.add_stub_and_should_receive_to Celluloid::AbstractProxy, ThreadSafeArray
32
- end
29
+ config.raise_errors_for_deprecations!
33
30
 
34
31
  config.before :suite do
35
32
  Adhearsion::Logging.start Adhearsion::Logging.default_appenders, :trace, Adhearsion.config.platform.logging.formatter
@@ -39,7 +36,7 @@ RSpec.configure do |config|
39
36
 
40
37
  config.before :each do
41
38
  Adhearsion.router = nil
42
- Punchblock.stub new_request_id: 'foo'
39
+ allow(Punchblock).to receive(:new_request_id).and_return 'foo'
43
40
  end
44
41
 
45
42
  config.after :each do
@@ -6,12 +6,12 @@ module CallControllerTestHelpers
6
6
  test_case.let(:call) { Adhearsion::Call.new }
7
7
  test_case.let(:block) { nil }
8
8
  test_case.let(:metadata) { {doo: :dah} }
9
- test_case.let(:controller) { new_controller test_case.describes }
9
+ test_case.let(:controller) { new_controller test_case.described_class }
10
10
 
11
11
  test_case.subject { controller }
12
12
 
13
13
  test_case.before do
14
- call.wrapped_object.stub :write_command => true, :id => call_id
14
+ allow(call.wrapped_object).to receive_messages :write_command => true, :id => call_id
15
15
  end
16
16
  end
17
17
 
@@ -26,7 +26,7 @@ module CallControllerTestHelpers
26
26
  end
27
27
 
28
28
  def expect_message_waiting_for_response(message = nil, fail = false, &block)
29
- expectation = controller.should_receive(:write_and_await_response, &block).once
29
+ expectation = expect(controller).to receive(:write_and_await_response, &block).once
30
30
  expectation = expectation.with message if message
31
31
  if fail
32
32
  expectation.and_raise fail
@@ -36,11 +36,11 @@ module CallControllerTestHelpers
36
36
  end
37
37
 
38
38
  def expect_message_of_type_waiting_for_response(message)
39
- controller.should_receive(:write_and_await_response).once.with(kind_of(message.class)).and_return message
39
+ expect(controller).to receive(:write_and_await_response).once.with(kind_of(message.class)).and_return message
40
40
  end
41
41
 
42
42
  def expect_component_execution(component, fail = false)
43
- expectation = controller.should_receive(:execute_component_and_await_completion).once.with(component)
43
+ expectation = expect(controller).to receive(:execute_component_and_await_completion).once.with(component)
44
44
  if fail
45
45
  expectation.and_raise fail
46
46
  else
@@ -50,7 +50,7 @@ module CallControllerTestHelpers
50
50
 
51
51
  def expect_input_component_complete_event(utterance)
52
52
  complete_event = Punchblock::Event::Complete.new
53
- complete_event.stub reason: double(utterance: utterance, name: :input)
54
- Punchblock::Component::Input.any_instance.stub(complete?: true, complete_event: complete_event)
53
+ allow(complete_event).to receive_messages reason: double(utterance: utterance, name: :input)
54
+ allow_any_instance_of(Punchblock::Component::Input).to receive_messages(complete?: true, complete_event: complete_event)
55
55
  end
56
56
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  module InitializerStubs
4
4
  UNWANTED_BEHAVIOR = {
5
- Adhearsion::Initializer => [:debugging_log, :initialize_log_paths, :update_rails_env_var, :require, :init_plugins, :run_plugins]
5
+ Adhearsion::Initializer => [:debugging_log, :initialize_log_paths, :update_rails_env_var, :require, :load, :init_plugins, :run_plugins]
6
6
  } unless defined? UNWANTED_BEHAVIOR
7
7
 
8
8
  def stub_behavior_for_initializer_with_no_path_changing_behavior
@@ -3,7 +3,7 @@
3
3
  def mock_offer(id = nil, headers = {})
4
4
  id ||= rand
5
5
  double("Offer: #{id}").tap do |offer|
6
- offer.stub :call_id => id, :headers => headers
6
+ allow(offer).to receive_messages :call_id => id, :headers => headers
7
7
  offer.as_null_object
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: adhearsion
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.4
4
+ version: 2.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jay Phillips
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2014-07-18 00:00:00.000000000 Z
14
+ date: 2015-02-01 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: activesupport
@@ -179,14 +179,14 @@ dependencies:
179
179
  requirements:
180
180
  - - "~>"
181
181
  - !ruby/object:Gem::Version
182
- version: '2.4'
182
+ version: '2.6'
183
183
  type: :runtime
184
184
  prerelease: false
185
185
  version_requirements: !ruby/object:Gem::Requirement
186
186
  requirements:
187
187
  - - "~>"
188
188
  - !ruby/object:Gem::Version
189
- version: '2.4'
189
+ version: '2.6'
190
190
  - !ruby/object:Gem::Dependency
191
191
  name: rake
192
192
  requirement: !ruby/object:Gem::Requirement
@@ -244,7 +244,21 @@ dependencies:
244
244
  - !ruby/object:Gem::Version
245
245
  version: '0.5'
246
246
  - !ruby/object:Gem::Dependency
247
- name: ci_reporter
247
+ name: ci_reporter_rspec
248
+ requirement: !ruby/object:Gem::Requirement
249
+ requirements:
250
+ - - ">="
251
+ - !ruby/object:Gem::Version
252
+ version: '0'
253
+ type: :development
254
+ prerelease: false
255
+ version_requirements: !ruby/object:Gem::Requirement
256
+ requirements:
257
+ - - ">="
258
+ - !ruby/object:Gem::Version
259
+ version: '0'
260
+ - !ruby/object:Gem::Dependency
261
+ name: ci_reporter_cucumber
248
262
  requirement: !ruby/object:Gem::Requirement
249
263
  requirements:
250
264
  - - ">="
@@ -305,14 +319,14 @@ dependencies:
305
319
  requirements:
306
320
  - - "~>"
307
321
  - !ruby/object:Gem::Version
308
- version: '2.13'
322
+ version: '3.0'
309
323
  type: :development
310
324
  prerelease: false
311
325
  version_requirements: !ruby/object:Gem::Requirement
312
326
  requirements:
313
327
  - - "~>"
314
328
  - !ruby/object:Gem::Version
315
- version: '2.13'
329
+ version: '3.0'
316
330
  - !ruby/object:Gem::Dependency
317
331
  name: simplecov
318
332
  requirement: !ruby/object:Gem::Requirement
@@ -432,7 +446,6 @@ files:
432
446
  - features/step_definitions/app_generator_steps.rb
433
447
  - features/step_definitions/cli_steps.rb
434
448
  - features/support/env.rb
435
- - features/support/utils.rb
436
449
  - lib/adhearsion.rb
437
450
  - lib/adhearsion/call.rb
438
451
  - lib/adhearsion/call_controller.rb
@@ -593,7 +606,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
593
606
  version: '0'
594
607
  requirements: []
595
608
  rubyforge_project:
596
- rubygems_version: 2.2.2
609
+ rubygems_version: 2.4.5
597
610
  signing_key:
598
611
  specification_version: 4
599
612
  summary: Adhearsion, open-source telephony development framework
@@ -611,7 +624,6 @@ test_files:
611
624
  - features/step_definitions/app_generator_steps.rb
612
625
  - features/step_definitions/cli_steps.rb
613
626
  - features/support/env.rb
614
- - features/support/utils.rb
615
627
  - spec/adhearsion/call_controller/dial_spec.rb
616
628
  - spec/adhearsion/call_controller/input_spec.rb
617
629
  - spec/adhearsion/call_controller/menu_dsl/array_match_calculator_spec.rb
@@ -1,9 +0,0 @@
1
- # encoding: utf-8
2
-
3
- Given /^PENDING/ do
4
- pending
5
- end
6
-
7
- Given /^JRuby skip test/ do
8
- pending "Daemonize not supported under JRuby" if RUBY_PLATFORM == 'java'
9
- end