describe '#email' do
    before { allow(subject).to receive(:credentials).and_return({ name: 'mt', email: 'mt@example.com' }) }

    it 'returns the email address of the owner' do
      expect(subject.email).to eql('mt@example.com')