Sha256: 55edd66b218e8528a07f58cb8b61942f1b83cfbabb26f5caf1134a90a4a25af4
Contents?: true
Size: 327 Bytes
Versions: 16
Compression:
Stored size: 327 Bytes
Contents
require 'spec_helper' module Landable describe AccessToken do it { should_not have_valid(:author_id).when(nil) } 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 end
Version data entries
16 entries across 16 versions & 1 rubygems