ruby2c 1.0.0.9 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/test/test_type.rb CHANGED
@@ -3,16 +3,16 @@
3
3
  $TESTING = true
4
4
 
5
5
  require 'minitest/autorun' if $0 == __FILE__
6
- require 'minitest/unit'
6
+ require 'minitest/test'
7
7
  require 'type'
8
8
  require 'sexp_processor' # for deep clone FIX ?
9
9
 
10
- class TestType < MiniTest::Unit::TestCase
10
+ class TestCType < Minitest::Test
11
11
  def setup
12
- @unknown = Type.unknown
13
- @unknown_list = Type.unknown_list
14
- @long = Type.long
15
- @long_list = Type.new(:long, true)
12
+ @unknown = CType.unknown
13
+ @unknown_list = CType.unknown_list
14
+ @long = CType.long
15
+ @long_list = CType.new(:long, true)
16
16
  end
17
17
 
18
18
  def test_function?
@@ -20,7 +20,7 @@ class TestType < MiniTest::Unit::TestCase
20
20
  assert ! @long_list.function?
21
21
  assert ! @unknown.function?
22
22
  assert ! @unknown_list.function?
23
- assert Type.function(Type.str, [Type.str], Type.str).function?
23
+ assert CType.function(CType.str, [CType.str], CType.str).function?
24
24
  end
25
25
 
26
26
  def test_list
@@ -29,8 +29,8 @@ class TestType < MiniTest::Unit::TestCase
29
29
  end
30
30
 
31
31
  def test_list=
32
- long = Type.long.deep_clone
33
- long_list = Type.long_list.deep_clone
32
+ long = CType.long.deep_clone
33
+ long_list = CType.long_list.deep_clone
34
34
 
35
35
  long.list = true
36
36
  long_list.list = false
@@ -45,36 +45,36 @@ class TestType < MiniTest::Unit::TestCase
45
45
  end
46
46
 
47
47
  def test_type_good
48
- file = Type.file
49
- assert_kind_of Type, file
48
+ file = CType.file
49
+ assert_kind_of CType, file
50
50
  assert_equal :file, file.type.contents
51
51
  end
52
52
 
53
53
  def test_type_bad
54
54
  assert_raises(RuntimeError) do
55
- Type.blahblah
55
+ CType.blahblah
56
56
  end
57
57
  end
58
58
 
59
59
  def test_type=
60
- long = Type.long.deep_clone
60
+ long = CType.long.deep_clone
61
61
  long.type = "something"
62
62
  assert_equal "something", long.type
63
63
  end
64
64
 
65
65
  def test_unknown_types
66
66
  assert_raises(RuntimeError) do
67
- Type.new(:some_made_up_type)
67
+ CType.new(:some_made_up_type)
68
68
  end
69
69
 
70
70
  assert_raises(RuntimeError) do
71
- Type.some_made_up_type
71
+ CType.some_made_up_type
72
72
  end
73
73
  end
74
74
 
75
75
  def test_function
76
- # TODO: actually TEST something here
77
- Type.function([Type.unknown], Type.unknown)
76
+ skip "actually TEST something here"
77
+ CType.function([CType.unknown], CType.unknown)
78
78
  end
79
79
 
80
80
  def test_list_type
@@ -82,20 +82,20 @@ class TestType < MiniTest::Unit::TestCase
82
82
  end
83
83
 
84
84
  def test_equals
85
- type = Type.long
85
+ type = CType.long
86
86
  refute_equal @unknown, type
87
87
  assert_equal @long, type
88
88
  refute_equal @long_list, type
89
89
  end
90
90
 
91
91
  def test_hash
92
- long1 = Type.long
93
- long2 = Type.long
92
+ long1 = CType.long
93
+ long2 = CType.long
94
94
 
95
- a = Type.unknown
95
+ a = CType.unknown
96
96
  a.unify long1
97
97
 
98
- b = Type.unknown
98
+ b = CType.unknown
99
99
  b.unify long2
100
100
 
101
101
  assert a == b, "=="
@@ -107,7 +107,7 @@ class TestType < MiniTest::Unit::TestCase
107
107
  end
108
108
 
109
109
  def test_list_equal
110
- type = Type.new(:long, true)
110
+ type = CType.new(:long, true)
111
111
  refute_equal @unknown, type
112
112
  refute_equal @long, type
113
113
  assert_equal @long_list, type
@@ -119,20 +119,20 @@ class TestType < MiniTest::Unit::TestCase
119
119
  end
120
120
 
121
121
  def test_unknown?
122
- assert_equal Type.unknown, Type.unknown
123
- refute_same Type.unknown, Type.unknown
122
+ assert_equal CType.unknown, CType.unknown
123
+ refute_same CType.unknown, CType.unknown
124
124
  end
125
125
 
126
126
  def test_unknown_list
127
- assert_equal @unknown_list, Type.unknown_list
128
- refute_same Type.unknown_list, Type.unknown_list
127
+ assert_equal @unknown_list, CType.unknown_list
128
+ refute_same CType.unknown_list, CType.unknown_list
129
129
  assert @unknown_list.list?
130
130
  end
131
131
 
132
132
  def test_unify_fail
133
- long = Type.new(:long)
134
- string = Type.new(:str)
135
- long_list = Type.new(:long, true)
133
+ long = CType.new(:long)
134
+ string = CType.new(:str)
135
+ long_list = CType.new(:long, true)
136
136
 
137
137
  assert_raises(TypeError) do
138
138
  long.unify string
@@ -144,8 +144,8 @@ class TestType < MiniTest::Unit::TestCase
144
144
  end
145
145
 
146
146
  def test_unify_simple
147
- long = Type.new(:long)
148
- unknown = Type.unknown
147
+ long = CType.new(:long)
148
+ unknown = CType.unknown
149
149
 
150
150
  assert_equal @long, long
151
151
 
@@ -157,8 +157,8 @@ class TestType < MiniTest::Unit::TestCase
157
157
  end
158
158
 
159
159
  def test_unify_list
160
- long_list = Type.new(:long, true)
161
- unknown = Type.unknown
160
+ long_list = CType.new(:long, true)
161
+ unknown = CType.unknown
162
162
 
163
163
  assert_equal @long_list, long_list
164
164
 
@@ -170,9 +170,9 @@ class TestType < MiniTest::Unit::TestCase
170
170
  end
171
171
 
172
172
  def test_unify_link
173
- unknown1 = Type.unknown
174
- unknown2 = Type.unknown
175
- long = Type.new(:long)
173
+ unknown1 = CType.unknown
174
+ unknown2 = CType.unknown
175
+ long = CType.new(:long)
176
176
 
177
177
  unknown1.unify unknown2
178
178
  assert_same(unknown1.type, unknown2.type,
@@ -185,7 +185,7 @@ class TestType < MiniTest::Unit::TestCase
185
185
  end
186
186
 
187
187
  def test_unify_function
188
- fun = Type.function [Type.unknown], Type.unknown
188
+ fun = CType.function [CType.unknown], CType.unknown
189
189
  @unknown.unify fun
190
190
  assert_equal fun, @unknown
191
191
  end