aboutsummaryrefslogtreecommitdiffstats
path: root/spec/attributes/time_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/attributes/time_spec.rb')
-rw-r--r--spec/attributes/time_spec.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/spec/attributes/time_spec.rb b/spec/attributes/time_spec.rb
new file mode 100644
index 0000000000..fcbe4f58e5
--- /dev/null
+++ b/spec/attributes/time_spec.rb
@@ -0,0 +1,22 @@
+require 'spec_helper'
+require 'bigdecimal'
+
+module Arel
+ describe "Attributes::Time" do
+
+ before :all do
+ @relation = Model.build do |r|
+ r.engine Testing::Engine.new
+ r.attribute :created_at, Attributes::Time
+ end
+ end
+
+ def type_cast(val)
+ @relation[:created_at].type_cast(val)
+ end
+
+ describe "#type_cast" do
+ it "works"
+ end
+ end
+end \ No newline at end of file