require 'helper' class AxleAttributes::TimestampAttributesTest < ActiveSupport::TestCase class Product < Superstore::Base include AxleAttributes::Model end test 'timestamps' do assert_not_nil Product.attributes['created_at'] assert_not_nil Product.attributes['updated_at'] assert Product.attributes['created_at'].readonly? assert Product.attributes['updated_at'].readonly? end end