File tree Expand file tree Collapse file tree 5 files changed +17
-17
lines changed Expand file tree Collapse file tree 5 files changed +17
-17
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 1.7.0] - 2021-07-14
9
+
10
+ ### Changed
11
+
12
+ - [ BREAKING] Changed ` order.price_cents_usd ` and ` order.patch_fee_cents_usd ` from string to integer.
13
+
8
14
## [ 1.6.0] - 2021-07-14
9
15
10
16
### Added
Original file line number Diff line number Diff line change 1
1
PATH
2
2
remote: .
3
3
specs:
4
- patch_ruby (1.5.2 )
4
+ patch_ruby (1.7.0 )
5
5
json (~> 2.1 , >= 2.1.0 )
6
6
typhoeus (~> 1.0 , >= 1.0.1 )
7
7
19
19
coderay (1.1.3 )
20
20
concurrent-ruby (1.1.7 )
21
21
diff-lcs (1.4.3 )
22
- ethon (0.12 .0 )
23
- ffi (>= 1.3 .0 )
22
+ ethon (0.14 .0 )
23
+ ffi (>= 1.15 .0 )
24
24
factory_bot (6.1.0 )
25
25
activesupport (>= 5.0.0 )
26
- ffi (1.15.0 )
26
+ ffi (1.15.3 )
27
27
i18n (1.8.7 )
28
28
concurrent-ruby (~> 1.0 )
29
29
json (2.5.1 )
Original file line number Diff line number Diff line change @@ -90,8 +90,8 @@ def self.openapi_types
90
90
:'production' => :'Boolean' ,
91
91
:'state' => :'String' ,
92
92
:'allocation_state' => :'String' ,
93
- :'price_cents_usd' => :'String ' ,
94
- :'patch_fee_cents_usd' => :'String ' ,
93
+ :'price_cents_usd' => :'Integer ' ,
94
+ :'patch_fee_cents_usd' => :'Integer ' ,
95
95
:'allocations' => :'Array<Allocation>' ,
96
96
:'registry_url' => :'String' ,
97
97
:'metadata' => :'Object'
Original file line number Diff line number Diff line change 11
11
=end
12
12
13
13
module Patch
14
- VERSION = '1.6 .0'
14
+ VERSION = '1.7 .0'
15
15
end
Original file line number Diff line number Diff line change 44
44
expect ( create_order_response . success ) . to eq true
45
45
expect ( order . id ) . not_to be_nil
46
46
expect ( order . mass_g ) . to eq ( order_mass_g )
47
- expect ( order . price_cents_usd . to_i ) . to be_between ( expected_price - 2 , expected_price + 2 )
48
- expect ( order . patch_fee_cents_usd ) . not_to be_empty
47
+ expect ( order . price_cents_usd ) . to be_between ( expected_price - 2 , expected_price + 2 )
48
+ expect ( order . patch_fee_cents_usd ) . to be_kind_of ( Integer )
49
49
expect ( order . registry_url ) . not_to be_empty
50
50
end
51
51
55
55
)
56
56
57
57
project_id = retrieve_project_response . data . id
58
- total_price_cents_usd = 5_00
58
+ total_price_cents_usd = 50_00
59
59
60
60
create_order_response = Patch ::Order . create_order (
61
61
total_price_cents_usd : total_price_cents_usd ,
67
67
order = create_order_response . data
68
68
69
69
expect ( order . id ) . not_to be_nil
70
- expect ( order . mass_g ) . to be > 450_000
71
- expect ( order . mass_g ) . to be < 460_000
72
- expect ( order . price_cents_usd ) . not_to be_empty
73
- expect ( order . patch_fee_cents_usd ) . not_to be_empty
74
- expect (
75
- order . price_cents_usd . to_i + order . patch_fee_cents_usd . to_i
76
- ) . to eq ( total_price_cents_usd )
70
+ expect ( order . price_cents_usd + order . patch_fee_cents_usd ) . to eq total_price_cents_usd
77
71
expect ( order . registry_url ) . not_to be_empty
78
72
end
79
73
You can’t perform that action at this time.
0 commit comments