Sha256: 13f034ca95d3fd76a6c560f580b871b302b99b32094b9a37d14fcc378f41a795

Contents?: true

Size: 498 Bytes

Versions: 2

Compression:

Stored size: 498 Bytes

Contents

# frozen_string_literal: true

# Unit tests for Noths::User
describe 'User' do
  let(:instance) { Noths::User.new }

  describe 'test an instance of User' do
    it 'should create an instance of User' do
      expect(instance).to be_instance_of(Noths::User)
    end
  end
  describe 'test attribute "name"' do
    it 'should work'
  end

  describe 'test attribute "telephone"' do
    it 'should work'
  end

  describe 'test attribute "telephone_country_code"' do
    it 'should work'
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
noths-0.2.1 spec/models/user_spec.rb
noths-0.2.0 spec/models/user_spec.rb