Commit 5af84653 authored by Nick Thomas's avatar Nick Thomas

Simplify a test

parent cfccb278
...@@ -26,12 +26,7 @@ describe Keys::LastUsedService do ...@@ -26,12 +26,7 @@ describe Keys::LastUsedService do
# make sure we _only_ update last_used_at and not always updated_at. # make sure we _only_ update last_used_at and not always updated_at.
key = create(:key, last_used_at: 1.year.ago) key = create(:key, last_used_at: 1.year.ago)
recorder = ActiveRecord::QueryRecorder.new do expect { described_class.new(key).execute }.not_to change { key.updated_at }
described_class.new(key).execute
end
expect(recorder.count).to eq(1)
expect(recorder.log[0]).not_to include('updated_at')
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment