0

在黄瓜中,当我的表步骤失败时,我看到以下错误和堆栈跟踪,但没有给出关于表差异的实际信息。

Tables were not identical (Cucumber::Ast::Table::Different)

我怎样才能让黄瓜给我看表的差异?

4

1 回答 1

0

我发现以下猴子补丁适用于黄瓜 1.1.9

创建一个支持文件,例如 features/support/progress_formatter_extensions.rb

require 'cucumber/formatter/progress'

module Cucumber
  module Formatter
    class Progress
      def exception(exception, status)
        @exception_raised = true
        if exception.kind_of?(Cucumber::Ast::Table::Different)
          @io.puts(exception.table)
          @io.flush
        end
      end
    end
  end
end
于 2013-05-18T22:21:47.137 回答