Browse Source

fix downgrade of ClassyHash

I should run my unit tests before pushing lol
dev
Andy Meneely 9 years ago
parent
commit
283c82dfe8
  1. 8
      spec/sprue_spec.rb

8
spec/sprue_spec.rb

@ -148,7 +148,7 @@ describe Squib::Sprue do
expect do expect do
Squib::Sprue.load(sprue_file('fail_no_sheet_width.yml'), 100) Squib::Sprue.load(sprue_file('fail_no_sheet_width.yml'), 100)
end.to raise_error( end.to raise_error(
ClassyHash::SchemaViolationError, RuntimeError,
'"sheet_width" is not a String matching /^(\d*[.])?\d+(in|cm|mm)$/' '"sheet_width" is not a String matching /^(\d*[.])?\d+(in|cm|mm)$/'
) )
end end
@ -157,7 +157,7 @@ describe Squib::Sprue do
expect do expect do
Squib::Sprue.load(sprue_file('fail_no_sheet_height.yml'), 100) Squib::Sprue.load(sprue_file('fail_no_sheet_height.yml'), 100)
end.to raise_error( end.to raise_error(
ClassyHash::SchemaViolationError, RuntimeError,
'"sheet_height" is not a String matching /^(\d*[.])?\d+(in|cm|mm)$/' '"sheet_height" is not a String matching /^(\d*[.])?\d+(in|cm|mm)$/'
) )
end end
@ -166,7 +166,7 @@ describe Squib::Sprue do
expect do expect do
Squib::Sprue.load(sprue_file('fail_no_card_width.yml'), 100) Squib::Sprue.load(sprue_file('fail_no_card_width.yml'), 100)
end.to raise_error( end.to raise_error(
ClassyHash::SchemaViolationError, RuntimeError,
'"card_width" is not a String matching /^(\d*[.])?\d+(in|cm|mm)$/' '"card_width" is not a String matching /^(\d*[.])?\d+(in|cm|mm)$/'
) )
end end
@ -175,7 +175,7 @@ describe Squib::Sprue do
expect do expect do
Squib::Sprue.load(sprue_file('fail_no_card_height.yml'), 100) Squib::Sprue.load(sprue_file('fail_no_card_height.yml'), 100)
end.to raise_error( end.to raise_error(
ClassyHash::SchemaViolationError, RuntimeError,
'"card_height" is not a String matching /^(\d*[.])?\d+(in|cm|mm)$/' '"card_height" is not a String matching /^(\d*[.])?\d+(in|cm|mm)$/'
) )
end end

Loading…
Cancel
Save