You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
193 B

require "minitest/autorun"
require_relative "workflow"
class TestWorkflow < Minitest::Test
def test_i18n_failure
workflow = Workflow::Faker.new("a")
workflow.items.to_xml
end
end