Sha256: bde98ffa52c6929bfabfaf2225de3855803e3bb6f087660e0eab29d56aa4a9dd
Contents?: true
Size: 398 Bytes
Versions: 25
Compression:
Stored size: 398 Bytes
Contents
require "cases/helper" require 'models/topic' class YamlSerializationTest < ActiveRecord::TestCase def test_to_yaml_with_time_with_zone_should_not_raise_exception Time.zone = ActiveSupport::TimeZone["Pacific Time (US & Canada)"] ActiveRecord::Base.time_zone_aware_attributes = true topic = Topic.new(:written_on => DateTime.now) assert_nothing_raised { topic.to_yaml } end end
Version data entries
25 entries across 25 versions & 5 rubygems