aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/cases/type/binary_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activemodel/test/cases/type/binary_test.rb')
-rw-r--r--activemodel/test/cases/type/binary_test.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/activemodel/test/cases/type/binary_test.rb b/activemodel/test/cases/type/binary_test.rb
new file mode 100644
index 0000000000..e6a32dbeec
--- /dev/null
+++ b/activemodel/test/cases/type/binary_test.rb
@@ -0,0 +1,15 @@
+require "cases/helper"
+require "active_model/type"
+
+module ActiveModel
+ module Type
+ class BinaryTest < ActiveModel::TestCase
+ def test_type_cast_binary
+ type = Type::Binary.new
+ assert_equal nil, type.cast(nil)
+ assert_equal "1", type.cast("1")
+ assert_equal 1, type.cast(1)
+ end
+ end
+ end
+end