Skip to content

Commit

Permalink
tests: skip test failure on Rubinius
Browse files Browse the repository at this point in the history
  • Loading branch information
ktdreyer committed Jul 11, 2014
1 parent 7f3af36 commit 35f4bbb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/mri_logger_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,11 @@ def test_initialize
end

def test_write
if RUBY_PLATFORM == 'rbx'
skip 'Rubinius crashes in logger.write'
# The full error is "NoMethodError: private method `puts' called on an
# instance of String."
end
r, w = IO.pipe
logdev = d(w)
logdev.write("msg2\n\n")
Expand Down

0 comments on commit 35f4bbb

Please sign in to comment.