Sha256: b3ebd67ae32a4e10831493f0cd6955d4b9ceb6ff66f4689e451f214ef8afb277

Contents?: true

Size: 1.32 KB

Versions: 58

Compression:

Stored size: 1.32 KB

Contents

# frozen_string_literal: true

# Copyright (c) 2018-2019 Zerocracy, Inc.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the 'Software'), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

require 'minitest'

# Test only module
module Assertions
  extend Minitest::Assertions
  class << self
    attr_accessor :assertions
  end
  self.assertions = 0
end

def assert_equal(a, b)
  Assertions.assert_equal(a, b)
end

Version data entries

58 entries across 58 versions & 1 rubygems

Version Path
zold-0.29.32 fixtures/merge/asserts.rb
zold-0.29.31 fixtures/merge/asserts.rb
zold-0.29.30 fixtures/merge/asserts.rb
zold-0.29.29 fixtures/merge/asserts.rb
zold-0.29.28 fixtures/merge/asserts.rb
zold-0.29.27 fixtures/merge/asserts.rb
zold-0.29.26 fixtures/merge/asserts.rb
zold-0.29.25 fixtures/merge/asserts.rb
zold-0.29.24 fixtures/merge/asserts.rb
zold-0.29.23 fixtures/merge/asserts.rb
zold-0.29.22 fixtures/merge/asserts.rb
zold-0.29.21 fixtures/merge/asserts.rb
zold-0.29.20 fixtures/merge/asserts.rb
zold-0.26.19 fixtures/merge/asserts.rb
zold-0.26.18 fixtures/merge/asserts.rb
zold-0.26.17 fixtures/merge/asserts.rb
zold-0.26.16 fixtures/merge/asserts.rb
zold-0.26.15 fixtures/merge/asserts.rb
zold-0.26.14 fixtures/merge/asserts.rb
zold-0.26.13 fixtures/merge/asserts.rb