speedflow-plugin-test 0.1.10 → 0.1.11

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1a599ae9b9d442722441a810dfda275d59b74b34
4
- data.tar.gz: ce25078d369950dfa9290a01d98e6d6af4a52922
3
+ metadata.gz: d55d8482b89228df344e46d877325f8417adfc68
4
+ data.tar.gz: 9cfc5bec4f6507f14b2faeaf7132f3261cbc6859
5
5
  SHA512:
6
- metadata.gz: dd9df8491ce7c6e1db3d753c7a242aacaae46b62ad7b3b7a7de245423b3a44789adf61de5b8b2661bd396ab0bead1b9cbc774be511c8394e3b0f78af00c604f1
7
- data.tar.gz: 6c11febb9252738fae203f193c5ae4206d7e7d1f09fc89de30d14537d592ab4fc91123b82ef23e8a58b9d2052303432830abaaa887ddbad6415e4d41139d21e8
6
+ metadata.gz: 8c081e6e009b6a34ca233f2f116cbb9ddff6f99a1521494637e7be6770ffcf3fbfe5e09e9b3e4b91ae654f408560641083545fe88a46160ff37085756765c2d9
7
+ data.tar.gz: 94659b96a2f68214b3af7ec6d66989a90ad27191ee9479b2d58831b97d9638cafcaf798163f93660fe90e22afa44ca849659657af36935916fd4a152a179ecb9
@@ -17,7 +17,7 @@ module Speedflow
17
17
  action = args.first
18
18
  arguments = args.last
19
19
 
20
- if action.to_s == 'no_action'
20
+ if action.to_s == 'action_no_method'
21
21
  raise NoMethodError
22
22
  end
23
23
 
@@ -1,7 +1,7 @@
1
1
  module Speedflow
2
2
  module Plugin
3
3
  module Test
4
- VERSION = '0.1.10'.freeze
4
+ VERSION = '0.1.11'.freeze
5
5
  end
6
6
  end
7
7
  end
@@ -10,7 +10,7 @@ describe Speedflow::Plugin::Test do
10
10
  .to output("Load: foo with args: {:bar=>\"baz\"}\n").to_stdout
11
11
  expect(Speedflow::Plugin::Test.foo(bar: 'baz'))
12
12
  .to include(bar: 'baz')
13
- expect { Speedflow::Plugin::Test.no_action(bar: 'baz') }
13
+ expect { Speedflow::Plugin::Test.action_no_method(bar: 'baz') }
14
14
  .to raise_error(NoMethodError)
15
15
  end
16
16
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: speedflow-plugin-test
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.10
4
+ version: 0.1.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Julien Breux