File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Expand file tree Collapse file tree 1 file changed +4
-10
lines changed 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