Sha256: 71e79adf77a0bb2afd4c88a6f1c9031c33a66046dee0a5a69b937f9ad65dc467
Contents?: true
Size: 268 Bytes
Versions: 3
Compression:
Stored size: 268 Bytes
Contents
# encoding: utf-8 class Cri::ArgumentArrayTestCase < Cri::TestCase def test_initialize arr = Cri::ArgumentArray.new([ 'foo', 'bar', '--', 'baz' ]) assert_equal [ 'foo', 'bar', 'baz' ], arr assert_equal [ 'foo', 'bar', '--', 'baz' ], arr.raw end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
cri-2.6.1 | test/test_argument_array.rb |
cri-2.6.0 | test/test_argument_array.rb |
cri-2.5.0 | test/test_argument_array.rb |