如何编写rspec
测试以确保轨道中模型数据的created_at
和updated_at
属性不是null
。
创建一个对象实例并测试如下:
expect(foo.created_at).not_to be_nil
expect(foo.updated_at).not_to be_nil