aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/cases/type/string_test.rb
blob: 222083817ecdcb60d94748b0c91d934b5249720a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
require "cases/helper"
require "active_model/type"

module ActiveModel
  module Type
    class StringTest < ActiveModel::TestCase
      test "type casting" do
        type = Type::String.new
        assert_equal "t", type.cast(true)
        assert_equal "f", type.cast(false)
        assert_equal "123", type.cast(123)
      end

      test "cast strings are mutable" do
        s = "foo"
        type = Type::String.new
        assert_equal false, type.cast(s).frozen?
      end

      test "values are duped coming out" do
        s = "foo"
        type = Type::String.new
        assert_not_same s, type.cast(s)
        assert_not_same s, type.deserialize(s)
      end
    end
  end
end