Sha256: 05b46ba036799f6c26246a044ba47521a8ccc345e00c3caec9c6358353863f89
Contents?: true
Size: 342 Bytes
Versions: 1
Compression:
Stored size: 342 Bytes
Contents
# -*- coding: utf-8 -*- require "sixarm_ruby_ramp_test" require "sixarm_ruby_ramp/fixnum" class FixnumTest < Minitest::Test def test_even_with_true assert(2.even?) end def test_even_with_false assert(!3.even?) end def test_odd_with_true assert(3.odd?) end def test_odd_with_false assert(!2.odd?) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sixarm_ruby_ramp-4.2.4 | test/sixarm_ruby_ramp_test/fixnum_test.rb |