Skip to content

Commit

Permalink
skiping magic comment test. checking encoding_aware?
Browse files Browse the repository at this point in the history
Loading AS encoding.
  • Loading branch information
arunagw committed Jul 31, 2011
1 parent 553d9ea commit b0334db
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions activerecord/test/cases/schema_dumper_test.rb
@@ -1,5 +1,5 @@
require "cases/helper"
require 'stringio'
require 'active_support/core_ext/string/encoding'


class SchemaDumperTest < ActiveRecord::TestCase
Expand All @@ -14,9 +14,10 @@ def standard_dump
@stream.string
end

def test_magic_comment
skip "only test magic comments on 1.9" if RUBY_VERSION < '1.9'
assert_match "# encoding: #{@stream.external_encoding.name}", standard_dump
if "string".encoding_aware?
def test_magic_comment
assert_match "# encoding: #{@stream.external_encoding.name}", standard_dump
end
end

def test_schema_dump
Expand Down

0 comments on commit b0334db

Please sign in to comment.