kuehne-nagel-despatch-interface 0.0.8 → 0.0.9
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.
- data/test/test_kn_actions.rb +13 -0
- metadata +4 -3
@@ -0,0 +1,13 @@
|
|
1
|
+
require 'minitest/spec'
|
2
|
+
require 'minitest/autorun'
|
3
|
+
require 'kuehne-nagel-despatch-interface'
|
4
|
+
|
5
|
+
describe Array do
|
6
|
+
it "can be created with no arguments" do
|
7
|
+
Array.new.must_be_instance_of Array
|
8
|
+
end
|
9
|
+
|
10
|
+
it "can be created with a specific size" do
|
11
|
+
Array.new(10).size.must_equal 10
|
12
|
+
end
|
13
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kuehne-nagel-despatch-interface
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.9
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -13,7 +13,7 @@ date: 2013-01-15 00:00:00.000000000Z
|
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: minitest
|
16
|
-
requirement: &
|
16
|
+
requirement: &2153704180 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,7 +21,7 @@ dependencies:
|
|
21
21
|
version: '0'
|
22
22
|
type: :development
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *2153704180
|
25
25
|
description: Library to integrate K+N logistic API to Ruby on Rails Applications.
|
26
26
|
email: henrique@madebymade.co.uk
|
27
27
|
executables: []
|
@@ -30,6 +30,7 @@ extra_rdoc_files: []
|
|
30
30
|
files:
|
31
31
|
- lib/kuehne-nagel-despatch-interface.rb
|
32
32
|
- lib/kuehne-nagel-despatch-interface/kn_actions.rb
|
33
|
+
- test/test_kn_actions.rb
|
33
34
|
homepage: https://github.com/madebymade/kuehne-nagel-despatch-interface
|
34
35
|
licenses: []
|
35
36
|
post_install_message:
|