glib2 0.90.7-x86-mingw32 → 0.90.8-x86-mingw32

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.
Files changed (70) hide show
  1. data/ChangeLog +68 -0
  2. data/ext/glib2/rbglib.c +51 -15
  3. data/ext/glib2/rbglib.h +10 -2
  4. data/ext/glib2/rbglib_bookmarkfile.c +37 -74
  5. data/ext/glib2/rbglib_completion.c +8 -16
  6. data/ext/glib2/rbglib_convert.c +8 -18
  7. data/ext/glib2/rbglib_error.c +2 -8
  8. data/ext/glib2/rbglib_i18n.c +1 -2
  9. data/ext/glib2/rbglib_iochannel.c +81 -127
  10. data/ext/glib2/rbglib_keyfile.c +38 -86
  11. data/ext/glib2/rbglib_maincontext.c +29 -64
  12. data/ext/glib2/rbglib_mainloop.c +4 -8
  13. data/ext/glib2/rbglib_messages.c +7 -17
  14. data/ext/glib2/rbglib_pollfd.c +7 -14
  15. data/ext/glib2/rbglib_shell.c +3 -6
  16. data/ext/glib2/rbglib_source.c +14 -28
  17. data/ext/glib2/rbglib_spawn.c +7 -14
  18. data/ext/glib2/rbglib_threads.c +2 -4
  19. data/ext/glib2/rbglib_timer.c +7 -14
  20. data/ext/glib2/rbglib_unicode.c +45 -16
  21. data/ext/glib2/rbglib_utils.c +25 -50
  22. data/ext/glib2/rbglib_win32.c +10 -17
  23. data/ext/glib2/rbgobj_boxed.c +9 -21
  24. data/ext/glib2/rbgobj_closure.c +5 -11
  25. data/ext/glib2/rbgobj_enums.c +1 -2
  26. data/ext/glib2/rbgobj_object.c +23 -59
  27. data/ext/glib2/rbgobj_param.c +7 -15
  28. data/ext/glib2/rbgobj_signal.c +25 -65
  29. data/ext/glib2/rbgobj_type.c +36 -81
  30. data/ext/glib2/rbgobj_typeinstance.c +3 -6
  31. data/ext/glib2/rbgobj_typeinterface.c +3 -6
  32. data/ext/glib2/rbgobj_typemodule.c +4 -8
  33. data/ext/glib2/rbgobj_typeplugin.c +2 -4
  34. data/ext/glib2/rbgobj_valuetypes.c +7 -15
  35. data/ext/glib2/rbgobject.c +8 -18
  36. data/ext/glib2/rbgobject.h +3 -0
  37. data/ext/glib2/rbgprivate.h +0 -1
  38. data/ext/glib2/rbgutil.c +3 -6
  39. data/lib/1.8/glib2.so +0 -0
  40. data/lib/1.9/glib2.so +0 -0
  41. data/lib/gnome2-raketask.rb +1 -0
  42. data/lib/mkmf-gnome2.rb +12 -9
  43. data/test-unit/History.txt +43 -1
  44. data/test-unit/Manifest.txt +1 -1
  45. data/test-unit/html/index.html +62 -24
  46. data/test-unit/html/index.html.ja +54 -25
  47. data/test-unit/html/test-unit.css +3 -3
  48. data/test-unit/lib/test/unit/assertions.rb +489 -36
  49. data/test-unit/lib/test/unit/autorunner.rb +40 -0
  50. data/test-unit/lib/test/unit/collector.rb +6 -4
  51. data/test-unit/lib/test/unit/collector/load.rb +48 -5
  52. data/test-unit/lib/test/unit/collector/xml.rb +250 -0
  53. data/test-unit/lib/test/unit/error.rb +4 -3
  54. data/test-unit/lib/test/unit/fixture.rb +12 -3
  55. data/test-unit/lib/test/unit/runner/xml.rb +15 -0
  56. data/test-unit/lib/test/unit/testcase.rb +48 -16
  57. data/test-unit/lib/test/unit/testresult.rb +6 -2
  58. data/test-unit/lib/test/unit/testsuite.rb +24 -2
  59. data/test-unit/lib/test/unit/ui/console/testrunner.rb +65 -28
  60. data/test-unit/lib/test/unit/ui/testrunnermediator.rb +11 -2
  61. data/test-unit/lib/test/unit/ui/xml/testrunner.rb +224 -0
  62. data/test-unit/lib/test/unit/version.rb +1 -1
  63. data/test-unit/test/run-test.rb +7 -0
  64. data/test-unit/test/{test_assertions.rb → test-assertions.rb} +708 -77
  65. data/test-unit/test/test-fixture.rb +37 -0
  66. data/test-unit/test/test-testcase.rb +24 -7
  67. data/test-unit/test/test_testsuite.rb +19 -11
  68. data/test/test_iochannel.rb +9 -9
  69. data/test/test_unicode.rb +44 -31
  70. metadata +8 -5
@@ -129,6 +129,43 @@ class TestUnitFixture < Test::Unit::TestCase
129
129
  assert_called_fixtures(expected_teardown_calls, test_case)
130
130
  end
131
131
 
132
+ def test_teardown_with_exception
133
+ test_case = Class.new(Test::Unit::TestCase) do
134
+ def called_ids
135
+ @called_ids ||= []
136
+ end
137
+
138
+ def called(id)
139
+ called_ids << id
140
+ end
141
+
142
+ def teardown
143
+ called(:teardown)
144
+ raise "teardown"
145
+ end
146
+
147
+ teardown
148
+ def custom_teardown_method0
149
+ called(:custom_teardown_method0)
150
+ raise "custom_teardown_method0"
151
+ end
152
+
153
+ teardown
154
+ def custom_teardown_method1
155
+ called(:custom_teardown_method1)
156
+ raise "custom_teardown_method1"
157
+ end
158
+
159
+ def test_nothing
160
+ end
161
+ end
162
+
163
+ assert_called_fixtures([:custom_teardown_method1,
164
+ :custom_teardown_method0,
165
+ :teardown],
166
+ test_case)
167
+ end
168
+
132
169
  private
133
170
  def assert_called_fixtures(expected, test_case)
134
171
  test = test_case.new("test_nothing")
@@ -13,14 +13,14 @@ module Test
13
13
  def test_with_arguments(arg1, arg2)
14
14
  end
15
15
  end
16
-
16
+
17
17
  caught = true
18
18
  catch(:invalid_test) do
19
19
  tc.new(:test_with_arguments)
20
20
  caught = false
21
21
  end
22
22
  check("Should have caught an invalid test when there are arguments", caught)
23
-
23
+
24
24
  caught = true
25
25
  catch(:invalid_test) do
26
26
  tc.new(:non_existent_test)
@@ -28,7 +28,7 @@ module Test
28
28
  end
29
29
  check("Should have caught an invalid test when the method does not exist", caught)
30
30
  end
31
-
31
+
32
32
  def setup
33
33
  @tc_failure_error = Class.new(TestCase) do
34
34
  def test_failure
@@ -75,7 +75,11 @@ module Test
75
75
  test_case.run(result) { |*arguments| progress << arguments }
76
76
  check("The failure should have triggered the listener", called)
77
77
  check("The failure should have set passed?", !test_case.return_passed?)
78
- check("The progress block should have been updated correctly", [[TestCase::STARTED, test_case.name], [TestCase::FINISHED, test_case.name]] == progress)
78
+ check("The progress block should have been updated correctly",
79
+ [[TestCase::STARTED, test_case.name],
80
+ [TestCase::STARTED_OBJECT, test_case],
81
+ [TestCase::FINISHED, test_case.name],
82
+ [TestCase::FINISHED_OBJECT, test_case]] == progress)
79
83
  end
80
84
 
81
85
  def test_add_failure_nested
@@ -511,9 +515,9 @@ module Test
511
515
 
512
516
  test_case.test_order = :defined
513
517
 
514
- assert_equal(["test_declarative_style_test_definition",
515
- "test_include_parenthesis",
516
- "test_1_2_3"],
518
+ assert_equal(["declarative style test definition",
519
+ "include parenthesis",
520
+ "1 + 2 = 3"],
517
521
  test_case.suite.tests.collect {|test| test.method_name})
518
522
 
519
523
  assert_equal(["declarative style test definition",
@@ -522,6 +526,19 @@ module Test
522
526
  test_case.suite.tests.collect {|test| test.description})
523
527
  end
524
528
 
529
+ def test_test_mark
530
+ test_case = Class.new(Test::Unit::TestCase) do
531
+ test
532
+ def my_test_method
533
+ end
534
+ end
535
+
536
+ test_case.test_order = :defined
537
+
538
+ assert_equal(["my_test_method"],
539
+ test_case.suite.tests.collect {|test| test.method_name})
540
+ end
541
+
525
542
  def test_redefine_method
526
543
  test_case = Class.new(Test::Unit::TestCase) do
527
544
  def test_name
@@ -6,7 +6,7 @@ require 'test/unit'
6
6
 
7
7
  module Test
8
8
  module Unit
9
- class TC_TestSuite < TestCase
9
+ class TestTestSuite < TestCase
10
10
  def setup
11
11
  @testcase1 = Class.new(TestCase) do
12
12
  def test_succeed1
@@ -55,31 +55,39 @@ module Test
55
55
  def test_run
56
56
  progress = []
57
57
  suite = @testcase1.suite
58
+ tests = suite.tests.dup
58
59
  result = TestResult.new
59
60
  suite.run(result) { |*values| progress << values }
60
-
61
+
61
62
  assert_equal(2, result.run_count, "Should have had four test runs")
62
63
  assert_equal(1, result.failure_count, "Should have had one test failure")
63
64
  assert_equal(0, result.error_count, "Should have had one test error")
64
65
  assert_equal([[TestSuite::STARTED, suite.name],
65
- [TestCase::STARTED, "test_fail(#{suite.name})"],
66
- [TestCase::FINISHED, "test_fail(#{suite.name})"],
67
- [TestCase::STARTED, "test_succeed1(#{suite.name})"],
68
- [TestCase::FINISHED, "test_succeed1(#{suite.name})"],
69
- [TestSuite::FINISHED, suite.name]],
70
- progress, "Should have had the correct progress")
71
-
66
+ [TestSuite::STARTED_OBJECT, suite],
67
+ [TestCase::STARTED, "test_fail(#{suite.name})"],
68
+ [TestCase::STARTED_OBJECT, tests[0]],
69
+ [TestCase::FINISHED, "test_fail(#{suite.name})"],
70
+ [TestCase::FINISHED_OBJECT, tests[0]],
71
+ [TestCase::STARTED, "test_succeed1(#{suite.name})"],
72
+ [TestCase::STARTED_OBJECT, tests[1]],
73
+ [TestCase::FINISHED, "test_succeed1(#{suite.name})"],
74
+ [TestCase::FINISHED_OBJECT, tests[1]],
75
+ [TestSuite::FINISHED, suite.name],
76
+ [TestSuite::FINISHED_OBJECT, suite]],
77
+ progress, "Should have had the correct progress")
78
+
72
79
  suite = TestSuite.new
73
80
  suite << @testcase1.suite
74
81
  suite << @testcase2.suite
75
82
  result = TestResult.new
76
83
  progress = []
77
84
  suite.run(result) { |*values| progress << values }
78
-
85
+
79
86
  assert_equal(4, result.run_count, "Should have had four test runs")
80
87
  assert_equal(1, result.failure_count, "Should have had one test failure")
81
88
  assert_equal(1, result.error_count, "Should have had one test error")
82
- assert_equal(14, progress.size, "Should have had the correct number of progress calls")
89
+ assert_equal(28, progress.size,
90
+ "Should have had the correct number of progress calls")
83
91
  end
84
92
 
85
93
  def test_empty?
@@ -6,7 +6,7 @@ require 'glib2'
6
6
  require 'tempfile'
7
7
  require 'nkf'
8
8
 
9
- $KCODE = "U"
9
+ $KCODE = "U" unless defined?(:Encoding)
10
10
 
11
11
  class TestGIOChannel < Test::Unit::TestCase
12
12
  def setup
@@ -70,14 +70,14 @@ class TestGIOChannel < Test::Unit::TestCase
70
70
  3.times do
71
71
  assert_equal(v.unpack("U")[0], io.getc)
72
72
  end
73
- assert_equal("\n"[0], io.getc)
73
+ assert_equal("\n".unpack("U")[0], io.getc)
74
74
  end
75
75
  assert_equal(nil, io.getc)
76
76
  io.close
77
77
  end
78
78
 
79
79
  def test_each_char
80
- text = @content.split(//)
80
+ text = @content.split(//u)
81
81
  io = GLib::IOChannel.new(@file.path)
82
82
  i = 0
83
83
  io.each_char {|ch|
@@ -89,7 +89,7 @@ class TestGIOChannel < Test::Unit::TestCase
89
89
 
90
90
  def test_readchar
91
91
  io = GLib::IOChannel.new(@file.path)
92
- text = @content.split(//)
92
+ text = @content.split(//u)
93
93
  text.each do |v|
94
94
  assert_equal(v.unpack("U")[0], io.readchar)
95
95
  end
@@ -196,18 +196,18 @@ class TestGIOChannel < Test::Unit::TestCase
196
196
  text = @content
197
197
  io = GLib::IOChannel.new(@file.path)
198
198
  io.seek(5)
199
- assert_equal(text[5], io.getc)
199
+ assert_equal(text.unpack("U*")[5], io.getc)
200
200
  io.seek(6, GLib::IOChannel::SEEK_SET)
201
- assert_equal(text[6], io.getc)
201
+ assert_equal(text.unpack("U*")[6], io.getc)
202
202
 
203
203
  io.seek(1, GLib::IOChannel::SEEK_CUR)
204
- assert_equal(text[8], io.getc)
204
+ assert_equal(text.unpack("U*")[8], io.getc)
205
205
 
206
206
  io.pos = 0
207
- assert_equal(text[0], io.getc)
207
+ assert_equal(text.unpack("U*")[0], io.getc)
208
208
 
209
209
  io.set_pos(2)
210
- assert_equal(text[2], io.getc)
210
+ assert_equal(text.unpack("U*")[2], io.getc)
211
211
 
212
212
  io.close
213
213
  end
data/test/test_unicode.rb CHANGED
@@ -154,26 +154,24 @@ class TestGLibUnicode < Test::Unit::TestCase
154
154
  end
155
155
 
156
156
  def test_unicode_canonical_ordering
157
- require_uconv
158
157
  original = [unichar("a"), 0x0308, 0x0323,
159
158
  unichar("e"), 0x0304, 0x0301, 0x0323].pack("U*")
160
159
  expected = [unichar("a"), 0x0323, 0x0308,
161
160
  unichar("e"), 0x0323, 0x0304, 0x0301].pack("U*")
162
- assert_equal(Uconv.u8tou4(expected),
163
- GLib::Unicode.canonical_ordering(Uconv.u8tou4(original)))
161
+ assert_equal(utf8_to_utf32(expected),
162
+ GLib::Unicode.canonical_ordering(utf8_to_utf32(original)))
164
163
  end
165
164
 
166
165
  def test_unicode_canonical_decomposition
167
- require_uconv
168
166
  a_with_acute = 0x00E1
169
167
  expected = [unichar("a"), 0x0301].pack("U*")
170
- assert_equal(Uconv.u8tou4(expected),
168
+ assert_equal(utf8_to_utf32(expected),
171
169
  GLib::Unicode.canonical_decomposition(a_with_acute))
172
170
 
173
171
  hiragana_ga = 0x304C
174
172
  hiragana_ka = 0x304B
175
173
  expected = [hiragana_ka, 0x3099].pack("U*")
176
- assert_equal(Uconv.u8tou4(expected),
174
+ assert_equal(utf8_to_utf32(expected),
177
175
  GLib::Unicode.canonical_decomposition(hiragana_ga))
178
176
  end
179
177
 
@@ -190,11 +188,10 @@ class TestGLibUnicode < Test::Unit::TestCase
190
188
  end
191
189
 
192
190
  def test_utf8_get_char
193
- require_uconv
194
- assert_equal(Uconv.u8tou4("あ").unpack("L*")[0],
191
+ assert_equal(utf8_to_utf32("あ").unpack("L*")[0],
195
192
  GLib::UTF8.get_char("あ"))
196
193
 
197
- assert_equal(Uconv.u8tou4("あ").unpack("L*")[0],
194
+ assert_equal(utf8_to_utf32("あ").unpack("L*")[0],
198
195
  GLib::UTF8.get_char("あ", true))
199
196
  partial_input = "あ".unpack("c*")[0..-2].pack("c*")
200
197
  assert_equal(-2, GLib::UTF8.get_char(partial_input, true))
@@ -213,7 +210,7 @@ class TestGLibUnicode < Test::Unit::TestCase
213
210
 
214
211
  def test_utf8_validate
215
212
  assert(GLib::UTF8.validate("あ"))
216
- assert(!GLib::UTF8.validate("あ"[1..-1]))
213
+ assert(!GLib::UTF8.validate(binary("あ")[1..-1]))
217
214
  end
218
215
 
219
216
  def test_utf8_upcase
@@ -251,7 +248,6 @@ class TestGLibUnicode < Test::Unit::TestCase
251
248
 
252
249
  def test_utf8_collate
253
250
  only_glib_version(2, 16, 0)
254
- require_uconv
255
251
  assert_operator(0, :>, GLib::UTF8.collate("あ", "い"))
256
252
  assert_operator(0, :<, GLib::UTF8.collate("い", "あ"))
257
253
  assert_equal(0, GLib::UTF8.collate("あ", "あ"))
@@ -259,7 +255,6 @@ class TestGLibUnicode < Test::Unit::TestCase
259
255
 
260
256
  def test_utf8_collate_key
261
257
  only_glib_version(2, 16, 0)
262
- require_uconv
263
258
  assert_operator(0, :>,
264
259
  GLib::UTF8.collate_key("あ") <=>
265
260
  GLib::UTF8.collate_key("い"))
@@ -284,57 +279,50 @@ class TestGLibUnicode < Test::Unit::TestCase
284
279
  end
285
280
 
286
281
  def test_utf8_to_utf16
287
- require_uconv
288
- assert_equal(Uconv.u8tou16("あいうえお"),
282
+ assert_equal(utf8_to_utf16("あいうえお"),
289
283
  GLib::UTF8.to_utf16("あいうえお"))
290
284
  end
291
285
 
292
286
  def test_utf8_to_ucs4
293
- require_uconv
294
- assert_equal(Uconv.u8tou4("あいうえお"),
287
+ assert_equal(utf8_to_utf32("あいうえお"),
295
288
  GLib::UTF8.to_ucs4("あいうえお"))
296
289
 
297
290
  assert_raise(GLib::ConvertError) do
298
- GLib::UTF8.to_ucs4("あいうえお"[1..-1])
291
+ GLib::UTF8.to_ucs4(binary("あいうえお")[1..-1])
299
292
  end
300
293
  assert_nothing_raised do
301
- GLib::UTF8.to_ucs4("あいうえお"[1..-1], true)
294
+ GLib::UTF8.to_ucs4(binary("あいうえお")[1..-1], true)
302
295
  end
303
296
  end
304
297
 
305
298
  def test_utf16_to_ucs4
306
- require_uconv
307
- assert_equal(Uconv.u8tou4("あいうえお"),
308
- GLib::UTF16.to_ucs4(Uconv.u8tou16("あいうえお")))
299
+ assert_equal(utf8_to_utf32("あいうえお"),
300
+ GLib::UTF16.to_ucs4(utf8_to_utf16("あいうえお")))
309
301
  end
310
302
 
311
303
  def test_utf16_to_utf8
312
- require_uconv
313
304
  assert_equal("あいうえお",
314
- GLib::UTF16.to_utf8(Uconv.u8tou16("あいうえお")))
305
+ GLib::UTF16.to_utf8(utf8_to_utf16("あいうえお")))
315
306
  end
316
307
 
317
308
 
318
309
  def test_ucs4_to_utf16
319
- require_uconv
320
- assert_equal(Uconv.u8tou16("あいうえお"),
321
- GLib::UCS4.to_utf16(Uconv.u8tou4("あいうえお")))
310
+ assert_equal(utf8_to_utf16("あいうえお"),
311
+ GLib::UCS4.to_utf16(utf8_to_utf32("あいうえお")))
322
312
 
323
313
  assert_raise(GLib::ConvertError) do
324
- GLib::UCS4.to_utf16(Uconv.u8tou4("あいうえお")[1..-1])
314
+ GLib::UCS4.to_utf16(binary(utf8_to_utf32("あいうえお"))[1..-1])
325
315
  end
326
316
  end
327
317
 
328
318
  def test_ucs4_to_utf8
329
- require_uconv
330
319
  assert_equal("あいうえお",
331
- GLib::UCS4.to_utf8(Uconv.u8tou4("あいうえお")))
320
+ GLib::UCS4.to_utf8(utf8_to_utf32("あいうえお")))
332
321
  end
333
322
 
334
323
  def test_unichar_to_utf8
335
- require_uconv
336
324
  assert_equal("あ",
337
- GLib::UniChar.to_utf8(Uconv.u8tou4("あ").unpack("L*")[0]))
325
+ GLib::UniChar.to_utf8(utf8_to_utf32("あ").unpack("L*")[0]))
338
326
  end
339
327
 
340
328
  def test_unichar_combining_class
@@ -361,9 +349,34 @@ class TestGLibUnicode < Test::Unit::TestCase
361
349
  GLib::UTF8.get_char(char)
362
350
  end
363
351
 
352
+ def utf8_to_utf32(string)
353
+ if string.respond_to?(:encode)
354
+ string.encode("UTF-32LE")
355
+ else
356
+ require_uconv
357
+ Uconv.u8tou4(string)
358
+ end
359
+ end
360
+
361
+ def utf8_to_utf16(string)
362
+ if string.respond_to?(:encode)
363
+ string.encode("UTF-16LE")
364
+ else
365
+ require_uconv
366
+ Uconv.u8tou16(string)
367
+ end
368
+ end
369
+
364
370
  def require_uconv
365
371
  require 'uconv'
366
372
  rescue LoadError
367
373
  omit("Need uconv to run this test.")
368
374
  end
375
+
376
+ def binary(string)
377
+ if string.respond_to?(:force_encoding)
378
+ string.force_encoding("ascii-8bit")
379
+ end
380
+ string
381
+ end
369
382
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: glib2
3
3
  version: !ruby/object:Gem::Version
4
- hash: 377
4
+ hash: 359
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 90
9
- - 7
10
- version: 0.90.7
9
+ - 8
10
+ version: 0.90.8
11
11
  platform: x86-mingw32
12
12
  authors:
13
13
  - The Ruby-GNOME2 Proejct Team
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-02-02 00:00:00 +09:00
18
+ date: 2011-03-04 00:00:00 +09:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -171,10 +171,12 @@ files:
171
171
  - test-unit/lib/test/unit/runner/emacs.rb
172
172
  - test-unit/lib/test/unit/runner/console.rb
173
173
  - test-unit/lib/test/unit/runner/tap.rb
174
+ - test-unit/lib/test/unit/runner/xml.rb
174
175
  - test-unit/lib/test/unit/ui/testrunnerutilities.rb
175
176
  - test-unit/lib/test/unit/ui/emacs/testrunner.rb
176
177
  - test-unit/lib/test/unit/ui/testrunner.rb
177
178
  - test-unit/lib/test/unit/ui/tap/testrunner.rb
179
+ - test-unit/lib/test/unit/ui/xml/testrunner.rb
178
180
  - test-unit/lib/test/unit/ui/console/outputlevel.rb
179
181
  - test-unit/lib/test/unit/ui/console/testrunner.rb
180
182
  - test-unit/lib/test/unit/ui/testrunnermediator.rb
@@ -188,6 +190,7 @@ files:
188
190
  - test-unit/lib/test/unit/fixture.rb
189
191
  - test-unit/lib/test/unit/collector/descendant.rb
190
192
  - test-unit/lib/test/unit/collector/load.rb
193
+ - test-unit/lib/test/unit/collector/xml.rb
191
194
  - test-unit/lib/test/unit/collector/dir.rb
192
195
  - test-unit/lib/test/unit/collector/objectspace.rb
193
196
  - test-unit/lib/test/unit/color-scheme.rb
@@ -229,6 +232,7 @@ files:
229
232
  - test-unit/test/collector/test_dir.rb
230
233
  - test-unit/test/collector/test-load.rb
231
234
  - test-unit/test/run-test.rb
235
+ - test-unit/test/test-assertions.rb
232
236
  - test-unit/test/test-priority.rb
233
237
  - test-unit/test/util/test_backtracefilter.rb
234
238
  - test-unit/test/util/test_observable.rb
@@ -241,7 +245,6 @@ files:
241
245
  - test-unit/test/test-color-scheme.rb
242
246
  - test-unit/test/test-omission.rb
243
247
  - test-unit/test/test-color.rb
244
- - test-unit/test/test_assertions.rb
245
248
  - lib/1.8/glib2.so
246
249
  - lib/1.9/glib2.so
247
250
  - vendor/local/src/tml/packaging/gettext_0.18.1.1-2_win32.sh