summaryrefslogtreecommitdiff
path: root/spec/ruby/core/array/pack/q_spec.rb
blob: bd6b2a4b712c95d014496f74677f6a9b57e24ba6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
require_relative '../../../spec_helper'
require_relative '../fixtures/classes'
require_relative 'shared/basic'
require_relative 'shared/numeric_basic'
require_relative 'shared/integer'

describe "Array#pack with format 'Q'" do
  it_behaves_like :array_pack_basic, 'Q'
  it_behaves_like :array_pack_basic_non_float, 'Q'
  it_behaves_like :array_pack_arguments, 'Q'
  it_behaves_like :array_pack_numeric_basic, 'Q'
  it_behaves_like :array_pack_integer, 'Q'
end

describe "Array#pack with format 'q'" do
  it_behaves_like :array_pack_basic, 'q'
  it_behaves_like :array_pack_basic_non_float, 'q'
  it_behaves_like :array_pack_arguments, 'q'
  it_behaves_like :array_pack_numeric_basic, 'q'
  it_behaves_like :array_pack_integer, 'q'
end

describe "Array#pack with format 'Q'" do
  describe "with modifier '<'" do
    it_behaves_like :array_pack_64bit_le, 'Q<'
  end

  describe "with modifier '>'" do
    it_behaves_like :array_pack_64bit_be, 'Q>'
  end
end

describe "Array#pack with format 'q'" do
  describe "with modifier '<'" do
    it_behaves_like :array_pack_64bit_le, 'q<'
  end

  describe "with modifier '>'" do
    it_behaves_like :array_pack_64bit_be, 'q>'
  end
end

little_endian do
  describe "Array#pack with format 'Q'" do
    it_behaves_like :array_pack_64bit_le, 'Q'
  end

  describe "Array#pack with format 'q'" do
    it_behaves_like :array_pack_64bit_le, 'q'
  end
end

big_endian do
  describe "Array#pack with format 'Q'" do
    it_behaves_like :array_pack_64bit_be, 'Q'
  end

  describe "Array#pack with format 'q'" do
    it_behaves_like :array_pack_64bit_be, 'q'
  end
end