This commit is contained in:
Nathaniel Woodthorpe 2018-03-19 12:40:24 -04:00
Родитель 779f287e6d
Коммит b2ccf53c9a
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -264,9 +264,9 @@ describe Scientist::Experiment do
describe "#raise_with" do
it "raises custom error if provided" do
class CustomError < Scientist::Experiment::MismatchError; end
CustomError = Class.new(Scientist::Experiment::MismatchError)
@ex.use { 1}
@ex.use { 1 }
@ex.try { 2 }
@ex.raise_with(CustomError)
@ex.raise_on_mismatches = true