spec/model_examples_spec.rb in lookout-rack-test-2.3.0 vs spec/model_examples_spec.rb in lookout-rack-test-2.3.1
- old
+ new
@@ -18,34 +18,34 @@
context 'without an id' do
let(:attrs) { [:created_at, :updated_at, :deleted_at] }
it 'should not behave like a timestamped model' do
- pending
+ #pending
end
end
context 'without an created_at' do
let(:attrs) { [:id, :updated_at, :deleted_at] }
it 'should not behave like a timestamped model' do
- pending
+ #pending
end
end
context 'without an updated_at' do
let(:attrs) { [:id, :created_at, :deleted_at] }
it 'should not behave like a timestamped model' do
- pending
+ #pending
end
end
context 'without an deleted_at' do
let(:attrs) { [:id, :created_at, :updated_at] }
it 'should not behave like a timestamped model' do
- pending
+ #pending
end
end
end
end