Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes BigDecimal deprecation warnings in specs #100

Merged
merged 1 commit into from
Nov 27, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/aws-record/record/marshalers/numeric_set_marshaler.rb
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def _as_numeric(set)
if item.is_a?(Numeric)
item
else
BigDecimal.new(item.to_s)
BigDecimal(item.to_s)
end
end
end
Expand Down
2 changes: 1 addition & 1 deletion spec/aws-record/record/item_operations_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ module Record

describe "validations with ActiveModel::Validations" do
let(:klass_amv) do
::TestTable = Class.new do
::TestTable ||= Class.new do
include(Aws::Record)
include(ActiveModel::Validations)
set_table_name("TestTable")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ module Marshalers

it 'converts BigDecimal objects to Time' do
expected = Time.at(1531173732)
input = BigDecimal.new(1531173732)
input = BigDecimal(1531173732)
expect(@marshaler.type_cast(input)).to eq(expected)
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ module Marshalers

it 'attempts to cast as numeric all contents of a set' do
input = Set.new([1,'2.0', '3'])
expected = Set.new([1, BigDecimal.new('2.0'), BigDecimal.new('3')])
expected = Set.new([1, BigDecimal('2.0'), BigDecimal('3')])
expect(@marshaler.type_cast(input)).to eq(expected)
end

Expand Down