Sha256: 50014d740b4996d221e5ef7dfec07c93367532390bd75260cbc301f368aaa81b

Contents?: true

Size: 365 Bytes

Versions: 10

Compression:

Stored size: 365 Bytes

Contents

module Boxes
  module Testing
    module Matchers
      require "boxes/testing/matchers/have_exit_status_matcher"
      require "boxes/testing/matchers/write_to_stdout_matcher"

      def have_exit_status(status)
        HaveExitStatusMatcher.new(status)
      end

      def write_to_stdout(data)
        WriteToStdoutMatcher.new(data)
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
boxes-3.7.0 lib/boxes/testing/matchers.rb
boxes-3.6.1 lib/boxes/testing/matchers.rb
boxes-3.6.0 lib/boxes/testing/matchers.rb
boxes-3.5.0 lib/boxes/testing/matchers.rb
boxes-3.4.0 lib/boxes/testing/matchers.rb
boxes-3.3.1 lib/boxes/testing/matchers.rb
boxes-3.3.0 lib/boxes/testing/matchers.rb
boxes-3.2.0 lib/boxes/testing/matchers.rb
boxes-3.1.0 lib/boxes/testing/matchers.rb
boxes-3.0.0 lib/boxes/testing/matchers.rb