spec/models/landable/access_token_spec.rb in landable-1.13.1 vs spec/models/landable/access_token_spec.rb in landable-1.13.2

- old
+ new

@@ -2,10 +2,10 @@ module Landable describe AccessToken do it { should_not have_valid(:author_id).when(nil) } - it "generates an expiration timestamp before creation" do + it 'generates an expiration timestamp before creation' do author = create :author token = AccessToken.create!(author: author) expect(token.expires_at).not_to be_nil end end