speedflow-plugin-test 0.1.9 → 0.1.10
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.
- checksums.yaml +4 -4
- data/lib/speedflow/plugin/test.rb +4 -0
- data/lib/speedflow/plugin/test/version.rb +1 -1
- data/spec/speedflow/plugin/test_spec.rb +3 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1a599ae9b9d442722441a810dfda275d59b74b34
|
4
|
+
data.tar.gz: ce25078d369950dfa9290a01d98e6d6af4a52922
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd9df8491ce7c6e1db3d753c7a242aacaae46b62ad7b3b7a7de245423b3a44789adf61de5b8b2661bd396ab0bead1b9cbc774be511c8394e3b0f78af00c604f1
|
7
|
+
data.tar.gz: 6c11febb9252738fae203f193c5ae4206d7e7d1f09fc89de30d14537d592ab4fc91123b82ef23e8a58b9d2052303432830abaaa887ddbad6415e4d41139d21e8
|
@@ -5,10 +5,12 @@ describe Speedflow::Plugin::Test do
|
|
5
5
|
expect(Speedflow::Plugin::Test::VERSION).not_to be nil
|
6
6
|
end
|
7
7
|
|
8
|
-
it '
|
8
|
+
it '.method_missing' do
|
9
9
|
expect { Speedflow::Plugin::Test.foo(bar: 'baz') }
|
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') }
|
14
|
+
.to raise_error(NoMethodError)
|
13
15
|
end
|
14
16
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: speedflow-plugin-test
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Julien Breux
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-03-
|
11
|
+
date: 2016-03-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|