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

    it 'returns the name of the owner' do
      expect(subject.name).to eql('mt')